:root {
    --bg-dark: #0a0a0f;
    --primary-blue: #2563FF;
    --text-white: #FFFFFF;
    --text-secondary: #8899AA;
    --border-color: rgba(255, 255, 255, 0.1);
}

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

html {
    scroll-behavior: smooth;
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
}

body {
    overflow-x: hidden;
    position: relative;
}

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

a {
    text-decoration: none;
    color: inherit;
}

/* Helpers */
.text-center { text-align: center; }
.text-blue { color: var(--primary-blue); }
.mb-60 { margin-bottom: 60px; }

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Backgrounds */
.dot-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 32px 32px;
    z-index: -2;
    mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
}

.bg-glow {
    position: fixed;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(37, 99, 255, 0.15) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

/* Navbar */
.navbar {
    padding: 24px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    pointer-events: none;
}

.nav-container-wide {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: auto;
}

.nav-spacer {
    width: 120px; /* Balance the flex layout so the pill stays centered */
}

.nav-pill {
    background: rgba(20, 20, 25, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 8px 8px 32px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 32px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    display: inline-flex;
    align-items: center;
    position: relative;
    pointer-events: auto;
}

.logo span {
    color: var(--primary-blue);
    letter-spacing: -1.5px;
}

.logo .sparkle {
    width: 20px;
    height: 20px;
    color: var(--primary-blue);
    position: absolute;
    top: -4px;
    right: -16px;
}

.nav-links {
    display: flex;
    gap: 24px;
}

.nav-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--text-white);
}

.nav-cta {
    background: var(--primary-blue);
    color: white;
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}

.nav-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(37, 99, 255, 0.4);
}

/* Hero */
.hero {
    padding: 200px 0 100px;
    text-align: center;
}

.hero-title {
    font-size: 5rem;
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin-bottom: 32px;
}

.pill-wrapper {
    position: relative;
    display: inline-block;
}

.pill-tag {
    position: absolute;
    bottom: -10px;
    right: -40px;
    transform: rotate(-3deg);
    background: var(--primary-blue);
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 6px;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 20px rgba(37, 99, 255, 0.4);
    white-space: nowrap;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

/* Buttons */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 100px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.2s;
}

.btn-primary {
    background: var(--text-white);
    color: var(--bg-dark);
}

.btn-primary:hover {
    transform: scale(1.02);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
}

/* Made By Section */
.text-center { text-align: center; }

.made-by-section {
    padding: 120px 0 60px;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.floating-apps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}

.app-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    animation: float-icon 4s ease-in-out infinite;
}

.app-icon:nth-child(1) { animation-delay: 0s; }
.app-icon:nth-child(2) { animation-delay: 0.5s; width: 65px; height: 65px; }
.app-icon:nth-child(3) { 
    animation-delay: 1s; 
    width: 75px; 
    height: 75px; 
    z-index: 2; 
    transform: scale(1.1);
    display: flex;
    align-items: center;
    justify-content: center;
}
.app-icon:nth-child(4) { animation-delay: 1.5s; width: 65px; height: 65px; }
.app-icon:nth-child(5) { animation-delay: 2s; }

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

.made-by-title {
    font-size: 4rem;
    font-weight: 600;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.logo-inline {
    font-size: 4rem;
    letter-spacing: -3px;
    margin: 0;
    position: relative;
    display: inline-flex;
}

.logo-inline span {
    letter-spacing: -3px;
}

.logo-inline .sparkle {
    width: 40px;
    height: 40px;
    top: -10px;
    right: -30px;
}

/* Showcase Intro / Expertise */
.showcase-intro {
    padding: 100px 0 100px;
}

.showcase-intro-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.showcase-left {
    max-width: 550px;
}

.showcase-left h2 {
    font-size: 3.5rem;
    font-weight: 600;
    letter-spacing: -0.04em;
    margin-bottom: 20px;
}

.showcase-left p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.expertise-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.badge-tech {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-white);
}

.showcase-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.abstract-dots {
    width: 300px;
    height: 200px;
    background-image: radial-gradient(rgba(255, 255, 255, 0.2) 2px, transparent 2px);
    background-size: 16px 16px;
    mask-image: radial-gradient(circle, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(circle, black 30%, transparent 70%);
    opacity: 0.5;
}

/* Transition Section */
.transition-section {
    padding: 120px 0;
}

.transition-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
}

.transition-title {
    font-size: 3.5rem;
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1.1;
}

.transition-buttons {
    display: flex;
    gap: 16px;
    padding-bottom: 10px;
}

/* Roadmap Section */
.roadmap-section {
    padding: 120px 0;
    text-align: center;
}

.roadmap-title {
    font-size: 3.5rem;
    font-weight: 500;
    letter-spacing: -0.03em;
    margin-bottom: 80px;
}

.text-blue {
    color: var(--primary-blue);
}

.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.roadmap-card {
    background: #111116;
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    min-height: 380px;
    transition: transform 0.3s ease;
}

.roadmap-card:hover {
    transform: translateY(-5px);
}

.roadmap-number {
    position: absolute;
    top: 40px;
    left: 40px;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-white);
}

.roadmap-content {
    margin-top: auto;
    margin-bottom: auto;
    width: 100%;
}

.roadmap-content h3 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 24px;
    display: inline-block;
}

.underline {
    position: relative;
    display: inline-block;
}

.underline::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--text-white);
}

.roadmap-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1.05rem;
    max-width: 280px;
    margin: 0 auto;
}

/* Footer */
.clean-footer {
    padding: 40px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a, .copyright {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--text-white);
}

/* Hero New Styles */
.cursive-highlight {
    font-family: 'Caveat', cursive;
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 1.1em;
    text-shadow: 0 0 30px rgba(37, 99, 255, 0.4);
    display: inline-block;
    transform: rotate(-2deg);
}

.brush-highlight {
    position: relative;
    display: inline-block;
    color: var(--text-white);
    padding: 0 16px;
    z-index: 1;
}

.brush-highlight::before {
    content: '';
    position: absolute;
    top: 5px;
    left: -5px;
    right: -5px;
    bottom: 5px;
    background-color: var(--primary-blue);
    z-index: -1;
    transform: rotate(-1deg);
    border-radius: 4px 12px 4px 12px;
    box-shadow: 0 10px 30px rgba(37, 99, 255, 0.3);
}

.trending-icon {
    display: inline-block;
    vertical-align: middle;
    margin-left: 8px;
    transform: translateY(-2px);
    color: var(--text-white);
}

/* Infinite Scrolling Marquee */
.marquee-section {
    padding: 20px 0 60px;
    overflow: hidden;
    position: relative;
    background: transparent;
}

.marquee-section::before,
.marquee-section::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.marquee-section::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-dark), transparent);
}

.marquee-section::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-dark), transparent);
}

.marquee-wrapper {
    display: flex;
    overflow: hidden;
    width: 100%;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: scroll-marquee 20s linear infinite;
}

.marquee-group {
    display: flex;
    gap: 80px;
    padding-right: 80px;
    align-items: center;
    flex-shrink: 0;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-secondary);
    white-space: nowrap;
    transition: transform 0.3s, opacity 0.3s;
    opacity: 0.6;
    cursor: pointer;
}

.marquee-item:hover {
    transform: scale(1.1);
    opacity: 1;
}

.marquee-item i {
    font-size: 3rem;
    transition: transform 0.3s;
}

.marquee-item img {
    width: 48px;
    height: auto;
}

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

@media (max-width: 768px) {
    .marquee-group { gap: 40px; padding-right: 40px; }
    .marquee-item { font-size: 1rem; }
    .marquee-item img { width: 20px; height: 20px; }
}

/* Flip Cards Section */
.flip-cards-section {
    padding: 100px 0;
    position: relative;
    z-index: 10;
}

.flip-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.flip-card {
    background-color: transparent;
    height: 420px;
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.4, 0.2, 0.2, 1);
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 24px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
}

.flip-card-front {
    background: #111116;
    border: 1px solid rgba(255, 255, 255, 0.05);
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.card-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(37, 99, 255, 0.2), rgba(29, 79, 232, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border: 1px solid rgba(37, 99, 255, 0.3);
    box-shadow: inset 0 0 20px rgba(37, 99, 255, 0.2);
}

.card-emoji {
    font-size: 2.5rem;
}

.flip-card-front h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-white);
}

.flip-card-front p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

.flip-card-back {
    background: #0a0a0f;
    border: 1px solid var(--primary-blue);
    transform: rotateY(180deg);
    text-align: left;
    box-shadow: 0 20px 40px rgba(37, 99, 255, 0.15), inset 0 0 40px rgba(37, 99, 255, 0.05);
}

.back-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.back-icon {
    font-size: 1.5rem;
    background: var(--primary-blue);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(37, 99, 255, 0.4);
}

.back-header h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-white);
}

.back-list {
    list-style: none;
    margin-bottom: auto;
}

.back-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.check-icon {
    flex-shrink: 0;
    color: var(--primary-blue);
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

.back-footer {
    background: rgba(37, 99, 255, 0.08);
    border: 1px solid rgba(37, 99, 255, 0.2);
    padding: 16px;
    border-radius: 12px;
    font-size: 0.9rem;
    color: var(--text-white);
    font-weight: 500;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .flip-cards-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Promise Section & Calendly Mockup */
.promise-section {
    padding: 80px 0 120px;
}

.promise-header {
    margin-bottom: 60px;
}

.pill-tag-static {
    background: rgba(37, 99, 255, 0.1);
    color: var(--primary-blue);
    border: 1px solid rgba(37, 99, 255, 0.2);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 100px;
    display: inline-block;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

.promise-title {
    font-size: 3.5rem;
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1.1;
}

.calendly-gradient-bg {
    background: linear-gradient(135deg, #2563FF, #A334FA);
    border-radius: 32px;
    padding: 6px;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(37, 99, 255, 0.2);
}

.calendly-white-card {
    background: #ffffff;
    border-radius: 26px;
    display: flex;
    overflow: hidden;
    color: #0a0a0f;
    min-height: 500px;
}

.calendly-info {
    flex: 1;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.calendly-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0a0a0f;
}

.calendly-info p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #4a4a55;
    margin-bottom: 24px;
}

.calendly-info .strong-text {
    font-weight: 600;
    color: #0a0a0f;
}

.calendly-embed-wrapper {
    flex: 1;
    border-left: 1px solid #f0f0f0;
    background: #fafafa;
    position: relative;
    min-height: 500px;
}

.calendly-mockup-btn {
    position: absolute;
    bottom: -24px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #2563FF, #1D4FE8);
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 16px 40px;
    border-radius: 100px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2), 0 0 0 8px var(--bg-dark);
    transition: transform 0.3s, box-shadow 0.3s;
    z-index: 10;
    white-space: nowrap;
}

.calendly-mockup-btn:hover {
    transform: translateX(-50%) translateY(-4px);
    box-shadow: 0 14px 25px rgba(0,0,0,0.3), 0 0 0 8px var(--bg-dark);
}

/* Calendly Badges */
.calendly-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.calendly-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.calendly-badge:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    border-color: var(--primary-blue);
    color: var(--text-white);
}

.calendly-badge i {
    color: var(--primary-blue);
    font-size: 1.1rem;
}


/* Contact Cards Section */
.contact-cards-section {
    padding: 60px 0;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 24px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-blue);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact-card-icon {
    width: 64px;
    height: 64px;
    background: rgba(37, 99, 255, 0.1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--primary-blue);
    transition: all 0.4s;
}

.contact-card:hover .contact-card-icon {
    background: var(--primary-blue);
    color: white;
    transform: rotate(-5deg) scale(1.1);
}

.contact-card-content h3 {
    color: var(--text-white);
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.contact-card-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.contact-card-arrow {
    margin-left: auto;
    color: var(--text-secondary);
    font-size: 1.2rem;
    transition: all 0.4s;
    opacity: 0.5;
}

.contact-card:hover .contact-card-arrow {
    color: var(--primary-blue);
    transform: translateX(8px);
    opacity: 1;
}

/* Roadmap Section */
.roadmap-section {
    padding: 100px 0;
    background: transparent;
}

.roadmap-title {
    font-size: 3.5rem;
    font-weight: 600;
    letter-spacing: -0.04em;
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.roadmap-phases {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.phase-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 10px 0;
    position: relative;
    z-index: 2;
}

.connector-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.connector-label {
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 28px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: 0 0 40px rgba(0, 0, 0, 1);
    white-space: nowrap;
}

.connector-label i {
    color: var(--primary-blue);
    font-size: 1.1rem;
    animation: pulse-rocket 2s infinite;
}

@keyframes pulse-rocket {
    0% { transform: translateX(0); }
    50% { transform: translateX(5px); }
    100% { transform: translateX(0); }
}

.roadmap-phase {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    padding: 40px 40px 30px;
    background: rgba(255, 255, 255, 0.01);
    transition: all 0.3s ease;
}

.roadmap-phase:hover {
    border-color: rgba(37, 99, 255, 0.3);
    background: rgba(255, 255, 255, 0.02);
}

.phase-tag {
    position: absolute;
    top: -16px;
    left: 40px;
    background: #1a1a24;
    color: var(--primary-blue);
    border: 1px solid var(--primary-blue);
    padding: 6px 24px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.phase-evolution {
    border-color: rgba(163, 52, 250, 0.2);
}

.phase-evolution .phase-tag {
    background: linear-gradient(135deg, #2563FF, #A334FA);
    color: white;
    border: none;
}

.roadmap-grid-sub {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.roadmap-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    transition: all 0.4s ease;
}

.roadmap-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-blue);
    transform: translateY(-5px);
}

.roadmap-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(37, 99, 255, 0.1);
    position: absolute;
    top: 20px;
    right: 25px;
    line-height: 1;
}

.roadmap-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-white);
}

.roadmap-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.roadmap-list {
    list-style: none;
    padding: 0;
}

.roadmap-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.roadmap-list li i {
    color: var(--primary-blue);
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .roadmap-grid-sub {
        grid-template-columns: 1fr;
    }
    .roadmap-phase {
        padding: 40px 20px 20px;
    }
    .phase-tag {
        left: 20px;
        font-size: 0.7rem;
    }
}

@media (max-width: 768px) {
    .contact-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .contact-card {
        padding: 24px;
    }
}

@media (max-width: 992px) {
    .transition-flex, .showcase-intro-flex {
        flex-direction: column;
        align-items: flex-start;
    }
    .hero-title { font-size: 4rem; }
    .made-by-title, .transition-title { font-size: 3rem; }
    .logo-inline { font-size: 3rem; }
    .roadmap-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-title { font-size: 2.8rem; }
    .made-by-title { flex-direction: column; gap: 8px; font-size: 2.5rem; }
    .logo-inline { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .btn { justify-content: center; }
    .transition-buttons { flex-direction: column; width: 100%; }
    .footer-flex { flex-direction: column; gap: 24px; text-align: center; }
    .pill-tag { font-size: 0.7rem; }
    .floating-apps { transform: scale(0.8); }
}

/* Light Theme Roadmap */
.roadmap-section.light-theme {
    background-color: #f4f7ff; /* Fond bleuté doux */
    background-image: 
        linear-gradient(rgba(37, 99, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 255, 0.06) 1px, transparent 1px);
    background-size: 50px 50px;
    color: #0a0a0f;
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.roadmap-section.light-theme .roadmap-title {
    color: #0a0a0f;
}

.roadmap-section.light-theme .section-subtitle {
    color: #4a4a55;
}

.roadmap-section.light-theme .roadmap-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.roadmap-section.light-theme .roadmap-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 20px 50px rgba(37, 99, 255, 0.1);
    background: #ffffff;
}

.roadmap-section.light-theme .roadmap-content h3 {
    color: #0a0a0f;
}

.roadmap-section.light-theme .roadmap-content p,
.roadmap-section.light-theme .roadmap-list li {
    color: #4a4a55;
}

.roadmap-section.light-theme .roadmap-number {
    color: rgba(37, 99, 255, 0.08);
}

.roadmap-section.light-theme .roadmap-phase {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(0, 0, 0, 0.06);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.01);
}

.roadmap-section.light-theme .phase-tag {
    background: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.roadmap-section.light-theme .phase-evolution .phase-tag {
    background: linear-gradient(135deg, #2563FF, #A334FA);
}

.roadmap-section.light-theme .connector-label {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.1);
    color: #4a4a55;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.roadmap-section.light-theme .connector-line {
    background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.1), transparent);
}

.roadmap-section.light-theme .pill-tag-static {
    background: rgba(37, 99, 255, 0.1);
    color: var(--primary-blue);
    border: 1px solid rgba(37, 99, 255, 0.2);
}

@media (max-width: 768px) {
    .roadmap-section.light-theme {
        padding: 80px 0;
    }
}
