/* 
   Theme: Minimalist Startup
   Palette: White, Orange, Blue, Grey
*/

:root {
    --bg-color: #ffffff;
    --text-primary: #333333;
    --text-secondary: #666666;
    --accent-orange: #eb7b44;
    --accent-blue: #007acc;
    --border-light: #eeeeee;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Calibri', 'Segoe UI', Candara, Segoe, "Segoe UI", Optima, Arial, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.navbar {
    padding: 40px 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -0.5px;
    display: inline-flex;
    align-items: center;
}

.logo-i {
    position: relative;
    display: inline-block;
    width: 12.8px;
    /* space for the i */
    height: 24px;
    margin: 0 1px;
    color: transparent;
    /* hide real text */
}

.logo-i::before {
    /* Stem */
    content: '';
    position: absolute;
    bottom: 2.4px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 14px;
    background-color: var(--text-primary);
    border-radius: 2px;
}

.logo-i::after {
    /* Robot Eye */
    content: '';
    position: absolute;
    top: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background-color: var(--accent-orange);
    border: 2px solid white;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(235, 123, 68, 0.5);
    z-index: 2;
}

.nav-contact {
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 18px;
    /* Match nav-link size */
    padding: 9.6px 24px;
    /* More generous mobile-friendly padding */
    border: 1px solid var(--text-primary);
    border-radius: 50px;
    /* Pill shape */
    transition: all 0.3s ease;
    background-color: var(--text-primary);
}

.nav-contact:hover {
    border-color: #e5e7eb;
    background-color: transparent;
    color: var(--text-primary);
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 18px;
    transition: color 0.3s ease;
    padding: 8px 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nav-link:hover {
    color: var(--accent-orange);
}

.nav-link.active {
    color: var(--accent-orange);
}

.nav-link.active .nav-icon,
.nav-link:hover .nav-icon {
    stroke: var(--accent-orange);
}

/* Default state: Icon hidden, Text visible */
.nav-icon {
    display: none;
    width: 20px;
    height: 20px;
}

.nav-text {
    display: inline;
}

/* Hero Section - Redesigned */
/* Hero Section - Redesigned (Light Theme) */
.hero-section {
    position: relative;
    padding: 96px 0 128px;
    background-color: var(--bg-color);
    overflow: hidden;
    color: var(--text-primary);
}

.hero-bg-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    /* Subtle warm glow for light theme */
    background: radial-gradient(circle at 50% 50%, rgba(235, 123, 68, 0.08), transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(0, 122, 204, 0.05), transparent 50%);
    z-index: 1;
    animation: pulseGlow 15s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    /* Stack vertically for centered layout */
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.hero-content {
    flex: 1;
    max-width: 800px;
    /* Allow wider text since it's centered */
    text-align: center;
    /* Center align everything */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge-wrapper {
    margin-bottom: 24px;
}

.eyebrow-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(235, 123, 68, 0.1);
    border: 1px solid rgba(235, 123, 68, 0.2);
    border-radius: 50px;
    font-size: 13.6px;
    font-weight: 600;
    color: #eb7b44;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: bold;
    color: #222;
    letter-spacing: -1px;
}

.gradient-text {
    /* Keep the gradient but maybe darker/richer if needed, or keeping same is fine */
    background: linear-gradient(135deg, #eb7b44 0%, #d15e26 50%, #007acc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 21.6px;
    /* Slightly larger for Calibri to look premium */
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 90%;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: nowrap;
    /* Force side-by-side */
    justify-content: center;
    /* Center buttons */
}

/* Small Decorative Graphics */
.hero-mini-graphics {
    display: flex;
    gap: 32px;
    justify-content: center;
    margin-bottom: 40px;
}

.mini-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    /* Subtle shadow for floating effect */
    color: var(--accent-orange);
    transition: transform 0.3s ease;
}

.mini-icon:hover {
    transform: translateY(-5px);
}

.mini-icon svg {
    width: 24px;
    height: 24px;
}

.icon-code {
    color: var(--accent-blue);
}

.icon-bot {
    color: #333;
}

.icon-claude {
    color: var(--accent-orange);
}

.icon-gemini {
    color: var(--accent-blue);
}

.icon-openai {
    color: var(--text-primary);
}

.icon-copilot {
    color: var(--accent-blue);
}

.icon-deepseek {
    color: var(--accent-orange);
}


.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.btn-linkedin {
    background-color: #0077b5;
    color: white;
}

.btn-linkedin:hover {
    background-color: #005e93;
}

.btn-instagram {
    background-color: #fff;
    color: #333;
    border-color: #dbdbdb;
}

.btn-instagram:hover {
    background-color: #fafafa;
    border-color: #b3b3b3;
    color: #000;
}

/* Hero Visual & Glass Card */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    /* Align right to avoid buttons */
    align-items: center;
    padding-left: 32px;
    /* Add buffer */
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 32px;
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 500px;
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.static-hero-svg {
    width: 100%;
    max-width: 500px;
    height: auto;
    /* Static, no filters for clean look */
}

/* Responsive Handling */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
        margin-bottom: 48px;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .action-buttons {
        justify-content: center;
    }

    .hero-title {
        font-size: 48px;
    }
}


/* Content Grid */
.content-section {
    padding: 64px 0 96px;
    border-top: 1px solid var(--border-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 64px 32px;
    /* Larger vertical gap, standard horizontal */
    text-align: center;
    max-width: 1200px;
    /* Constrain width to keep layout nice */
    margin: 0 auto;
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #222;
}

.feature-card p {
    font-size: 16px;
    color: var(--text-secondary);
}

/* Icons/Graphics */
.icon-wrapper {
    width: 60px;
    height: 60px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.icon-wrapper svg {
    width: 32px;
    height: 32px;
}

.orange-icon {
    background-color: rgba(235, 123, 68, 0.1);
    color: var(--accent-orange);
}

.blue-icon {
    background-color: rgba(0, 122, 204, 0.1);
    color: var(--accent-blue);
}

.dark-icon {
    background-color: rgba(51, 51, 51, 0.1);
    color: var(--text-primary);
}

/* Footer */
.footer {
    padding: 48px 0;
    border-top: 1px solid var(--border-light);
    margin-top: auto;
}

.footer-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    color: #999;
    font-size: 14.4px;
}

.footer-contact-btn {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 15.2px;
    padding: 8px 24px;
    border: 1px solid var(--border-light);
    /* Subtle border */
    border-radius: 50px;
    background-color: transparent;
    transition: all 0.3s ease;
}

.footer-contact-btn:hover {
    border-color: var(--text-primary);
    background-color: var(--text-primary);
    color: white;
}

.footer-socials {
    display: flex;
    gap: 24px;
}

.social-link {
    color: #999;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-link:hover {
    color: var(--accent-orange);
}

/* Responsive */
/* Mobile/Responsive Improvements */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .navbar {
        padding: 24px 0;
    }

    .hero-section {
        padding: 48px 0;
    }

    .hero-title {
        font-size: 40px;
        word-wrap: break-word;
        /* Prevent overflow on really small screens */
    }

    .hero-subtitle {
        font-size: 17.6px;
        margin-bottom: 32px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 0 16px;
    }

    .footer-content {
        flex-direction: column;
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-section {
        padding: 48px 0;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 32px;
    }

    /* Navbar: Mobile specific */
    .nav-actions {
        gap: 8px;
    }

    .nav-link {
        padding: 8px;
        border-radius: 50%;
        /* Circle shape for icon */
        width: 40px;
        height: 40px;
        justify-content: center;
    }

    .nav-text {
        display: none;
        /* Hide text on mobile */
    }

    .nav-icon {
        display: block;
        /* Show icon on mobile */
        width: 20px;
        height: 20px;
        stroke: #000000;
        /* Default Black */
        stroke-width: 2.5;
        /* Bold it up */
    }

    .nav-link.active .nav-icon {
        stroke: var(--accent-orange);
        /* Active Orange */
    }

    /* Smaller mini graphics for mobile */
    .hero-mini-graphics {
        gap: 16px;
        margin-bottom: 32px;
    }

    .mini-icon {
        width: 40px;
        height: 40px;
    }

    .mini-icon svg {
        width: 20px;
        height: 20px;
    }

    /* Buttons: Stack vertically on mobile */
    .action-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 220px;
        margin: 0 auto;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 11.2px 16px;
        font-size: 14.4px;
    }

    /* Restore 'Follow on' prefix since we have space now */
    .btn-text-prefix {
        display: inline;
    }

    .content-section {
        padding: 48px 0;
    }

    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
}

/* About Us Page Styles */
.about-hero {
    padding: 96px 0 64px;
    text-align: center;
    background: radial-gradient(circle at 50% 10%, rgba(235, 123, 68, 0.05), transparent 70%);
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 64px;
    align-items: start;
    margin-top: 32px;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.about-text p {
    font-size: 17.6px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.7;
}

.about-stat-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--border-light);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.stat-item {
    text-align: center;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-light);
}

.stat-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-orange);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14.4px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.values-section {
    padding: 64px 0 96px;
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 48px;
    /* Adjusted margin slightly too */
    color: var(--text-primary);
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-stat-card {
        flex-direction: row;
        justify-content: space-around;
        padding: 32px;
    }

    .stat-item {
        padding-bottom: 0;
        border-bottom: none;
        border-right: 1px solid var(--border-light);
        padding-right: 32px;
        flex: 1;
    }

    .stat-item:last-child {
        border-right: none;
        padding-right: 0;
    }
}

@media (max-width: 600px) {
    .about-stat-card {
        flex-direction: column;
        gap: 24px;
    }

    .stat-item {
        border-right: none;
        padding-right: 0;
        padding-bottom: 24px;
        border-bottom: 1px solid var(--border-light);
    }

    .stat-item:last-child {
        padding-bottom: 0;
        border-bottom: none;
    }
}

/* Founder Section */
.founder-section {
    padding: 32px 0 96px;
    background-color: #fafafa;
    /* Light grey contrast */
    border-top: 1px solid var(--border-light);
}

.founder-card {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: center;
    /* Center horizontally */
    text-align: center;
    /* Center text */
    flex-direction: column;
    /* Stack content if needed, though mostly text now */
    gap: 24px;
    /* Reduced gap since no image */
    border: 1px solid var(--border-light);
}

.founder-image-wrapper {
    flex-shrink: 0;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
}

.founder-placeholder {
    font-size: 48px;
    font-weight: bold;
    color: #ccc;
}

.founder-content h3 {
    font-size: 28px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.founder-role {
    display: block;
    font-size: 15.2px;
    color: var(--accent-orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.founder-content p {
    font-size: 16.8px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.founder-quote {
    font-style: italic;
    color: var(--text-primary);
    border-top: 3px solid var(--accent-orange);
    /* Top border instead of left */
    padding-top: 16px;
    margin-top: 24px;
    display: inline-block;
    /* Allow it to be centered properly */
}

@media (max-width: 768px) {
    .founder-card {
        flex-direction: column;
        text-align: center;
        padding: 32px;
        gap: 32px;
    }

    .founder-quote {
        border-left: none;
        border-top: 3px solid var(--accent-orange);
        padding-left: 0;
        padding-top: 16px;
    }
}

/* Roadmap List in About Text */
.roadmap-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.roadmap-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 16px;
    color: var(--text-secondary);
}

.roadmap-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: bold;
}

.roadmap-list strong {
    color: var(--text-primary);
}

/* =========================================
   Redesigned 'Simplex' About Page Styles
   Inspiration: Anthropic, Editorial, Modern
   ========================================= */

/* Typography Overrides for Editorial Feel */
.about-page-wrapper {
    position: relative;
    overflow: hidden;
    /* For graphics */
    padding-bottom: 96px;
}

.editorial-title {
    font-family: 'Newsreader', 'Times New Roman', serif;
    /* Use serif for that 'paper' feel */
    font-size: 56px;
    line-height: 1.1;
    font-weight: 400;
    /* Regular weight, more elegant */
    letter-spacing: -0.02em;
    margin-bottom: 32px;
    color: #111;
}

.highlight-italic {
    font-style: italic;
    color: var(--accent-orange);
}

.lead-paragraph {
    font-size: 21.6px;
    line-height: 1.6;
    color: #222;
    margin-bottom: 32px;
    font-weight: 500;
}

.content-body p {
    font-size: 18.4px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 24px;
    font-family: 'Inter', sans-serif;
    /* Keep body sans for readability */
}

/* Layout Simplification */
.skinny-container {
    max-width: 680px;
    /* Narrower for 'reading mode' */
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.manifesto-section {
    padding-top: 96px;
    padding-bottom: 64px;
}

.mono-badge {
    font-family: monospace;
    font-size: 13.6px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    display: block;
    margin-bottom: 16px;
}

/* Geometric Graphics */
.simplex-graphic {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.graphic-top-right {
    top: -50px;
    right: -50px;
    width: 600px;
    height: 600px;
}

.graphic-bottom-left {
    bottom: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    transform: rotate(180deg);
}

.simplex-divider {
    margin: 48px 0;
    display: flex;
    justify-content: center;
    opacity: 0.6;
}

/* Expectation Grid - Minimal List */
.expectation-grid {
    margin: 48px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.expect-item {
    display: flex;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid #f0f0f0;
}

.expect-item:last-child {
    border-bottom: none;
}

.item-icon {
    font-size: 19.2px;
    color: var(--accent-orange);
    padding-top: 3.2px;
}

.item-text strong {
    display: block;
    font-size: 17.6px;
    margin-bottom: 4px;
    color: #111;
}

.item-text p {
    font-size: 16px;
    margin-bottom: 0;
    color: #666;
}

/* Minimal Stats Strip */
.stats-strip {
    padding: 48px 0;
    margin-bottom: 64px;
}

.minimal-stats {
    display: flex;
    justify-content: space-between;
    padding: 32px 0;
    border-top: 2px solid #111;
    /* Bold line */
    border-bottom: 2px solid #111;
}

.min-stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ms-label {
    font-family: monospace;
    font-size: 12.8px;
    text-transform: uppercase;
    color: #666;
}

.ms-value {
    font-family: 'Newsreader', serif;
    font-size: 32px;
    font-style: italic;
    color: #111;
}

/* Minimal Founder Section */
.founder-minimal {
    padding-bottom: 64px;
}

.founder-layout {
    display: flex;
    align-items: center;
    gap: 32px;
    background: #fafafa;
    padding: 32px;
    border-radius: 12px;
}

.founder-avatar-minimal {
    width: 80px;
    height: 80px;
    background: #111;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Newsreader', serif;
    font-size: 40px;
    font-style: italic;
    flex-shrink: 0;
}

.founder-info {
    flex: 1;
}

.founder-name {
    font-family: 'Newsreader', serif;
    font-size: 24px;
    margin-bottom: 8px;
    color: #111;
}

.founder-bio {
    font-size: 15.2px;
    color: #555;
    margin-bottom: 16px;
    line-height: 1.5;
}

.founder-sign {
    font-family: monospace;
    font-size: 13.6px;
    color: var(--accent-orange);
}

/* Responsive */
@media (max-width: 768px) {
    .editorial-title {
        font-size: 40px;
    }

    .graphic-top-right,
    .graphic-bottom-left {
        opacity: 0.03;
        /* Tune down further on mobile */
        width: 300px;
        height: 300px;
    }

    .minimal-stats {
        flex-direction: column;
        gap: 32px;
        align-items: center;
        text-align: center;
    }

    .founder-layout {
        flex-direction: column;
        text-align: center;
    }
}

/* Founder Socials */
.founder-socials {
    display: flex;
    gap: 24px;
    /* Slightly wider gap */
    margin-top: 32px;
    justify-content: center;
    /* Force center alignment */
}

.founder-socials a {
    color: var(--text-secondary);
    transition: color 0.2s;
}

.founder-socials a:hover {
    color: var(--accent-orange);
}


/* Join Section */
.join-section {
    padding: 32px 0 96px;
}

.join-card {
    background: #111;
    color: white;
    border-radius: 24px;
    padding: 48px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: radial-gradient(circle at top right, #333, #111);
}

.join-card h2 {
    font-size: 32px;
    margin-bottom: 16px;
    font-weight: 600;
}

.join-card p {
    color: #ccc;
    font-size: 16.8px;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.join-form {
    display: flex;
    gap: 8px;
    max-width: 450px;
    margin: 0 auto;
}

.join-form input {
    flex: 1;
    padding: 12.8px 20px;
    border-radius: 50px;
    border: 1px solid #444;
    background: #222;
    color: white;
    font-family: inherit;
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s;
}

.join-form input:focus {
    border-color: var(--accent-orange);
}

.btn-join {
    background: var(--accent-orange);
    color: white;
    border: none;
    padding: 12.8px 24px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-join:hover {
    background: #e06c33;
}

.spam-notice {
    font-size: 12.8px !important;
    color: #777 !important;
    margin-top: 16px;
    margin-bottom: 0 !important;
}

@media (max-width: 500px) {
    .join-form {
        flex-direction: column;
    }

    .btn-join {
        width: 100%;
    }
}

/* =========================================
   Mobile Optimization Tweaks (Small Screens)
   ========================================= */

@media (max-width: 480px) {
    /* About Page Specifics */

    .content-section {
        padding: 16px 0 48px;
        /* Tighter vertical spacing */
    }

    /* Founder Card Mobile Polish */
    .founder-card {
        padding: 24px;
        /* Reduce padding to maximize content width */
        gap: 24px;
        border-radius: 20px;
    }

    .founder-image-wrapper {
        width: 140px;
        height: 140px;
        /* Slightly smaller avatar */
    }

    .founder-placeholder {
        font-size: 40px;
        /* Adjust text size in avatar */
    }

    .founder-content h3 {
        font-size: 24px;
    }

    /* Ensure socials center nicely */
    .founder-socials {
        justify-content: center;
        margin-top: 24px;
    }

    /* Join Section Mobile Polish */
    .join-section {
        padding: 0 0 64px;
        /* Reduce top padding */
    }

    .join-card {
        padding: 32px 24px;
        /* More horizontal space for text */
        border-radius: 20px;
    }

    .join-card h2 {
        font-size: 24px;
        /* Prevent wrapping issues */
    }

    .join-form input {
        width: 100%;
        /* Ensure full width */
        font-size: 15.2px;
    }

    /* Simplex Graphics Mobile Control */
    .simplex-graphic svg {
        opacity: 0.3;
        /* Reduce visibility slightly more */
    }

    /* Stats strip adjustments if needed (from simplex appended styles) */
    .minimal-stats {
        flex-direction: column;
        gap: 24px;
        padding: 24px 0;
    }

    .ms-value {
        font-size: 28px;
    }
}

/* About Text Title - Ensure single line fit */
.about-text h1 {
    font-size: 35.2px;
    margin-top: 24px;

    margin-bottom: 16px;
    line-height: 1.2;
    color: var(--text-primary);
    font-weight: 800;
}

@media (max-width: 1024px) {
    .about-text h1 {
        font-size: 32px;
    }
}



/* Contact Us Button - Split Style */
.btn-contact {
    display: inline-flex;
    align-items: center;
    background-color: #0F0F0F;
    /* Black background */
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    border: 1px solid #333;
    transition: all 0.2s ease;
    height: 36px;
    box-sizing: border-box;
    overflow: hidden;
    margin-left: 16px;
    /* Add some spacing from other nav items */
}

.btn-contact:hover {
    border-color: #666;
    background-color: #1a1a1a;
}

.btn-contact-text {
    padding: 0 16px;
}

.btn-contact-separator {
    width: 1px;
    height: 100%;
    background-color: #333;
    display: block;
}

.btn-contact-icon {
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.btn-contact-icon-mobile {
    display: none;
}

@media (max-width: 480px) {
    .about-text h1 {
        font-size: 28px;
    }

    /* Mobile Contact Button Adjustments */
    .btn-contact {
        margin-left: 0;
        height: 40px;
        width: 40px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
        background: transparent !important;
        border: none !important;
        color: white;
    }

    .btn-contact-text {
        display: none;
    }

    .btn-contact:hover {
        background: transparent;
        border: none;
    }

    .btn-contact-icon-mobile {
        display: block;
        width: 20px;
        height: 20px;
        stroke: #000000 !important;
        /* Default Black */
        stroke-width: 2.5;
    }
}