/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: #ffffff;
    color: #0f172a;
    line-height: 1.6;
}

.landing-page {
    min-height: 100vh;
    background: #ffffff;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-narrow {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom right, #f8fafc 0%, #ffffff 50%, rgba(6, 182, 212, 0.05) 100%);
}

.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.bg-orb-1 {
    top: 5rem;
    right: 5rem;
    width: 24rem;
    height: 24rem;
    background: rgba(6, 182, 212, 0.15);
}

.bg-orb-2 {
    bottom: 5rem;
    left: 5rem;
    width: 24rem;
    height: 24rem;
    background: rgba(59, 130, 246, 0.15);
}

.logo-wrapper {
    position: relative;
    margin: 2.5rem;
    animation: fadeIn 0.8s ease-out;
}

.logo {
    height: 5rem;
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 6rem 0;
}

.hero-content {
    animation: fadeIn 0.8s ease-out 0.2s backwards;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #cffafe;
    color: #0e7490;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.badge-cyan {
    background: rgba(6, 182, 212, 0.2);
    color: rgb(21, 170, 191);
}

.badge-icon {
    width: 1rem;
    height: 1rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: #0f172a;
    margin-bottom: 1rem;
}

.gradient-text {
    background: linear-gradient(to right, #0891b2, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    color: #475569;
    margin-bottom: 1.5rem;
}

.hero-subtitle strong {
    font-weight: 600;
    color: #0f172a;
}

.hero-description {
    font-size: 1.125rem;
    color: #475569;
    line-height: 1.75;
    max-width: 40rem;
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    padding-top: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 1rem;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(to right, #0891b2, #3b82f6);
    color: #ffffff;
    box-shadow: 0 10px 15px -3px rgba(6, 182, 212, 0.25);
}

.btn-primary:hover {
    box-shadow: 0 20px 25px -5px rgba(6, 182, 212, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background: #ffffff;
    color: #334155;
    border: 2px solid #e2e8f0;
}

.btn-secondary:hover {
    border-color: #67e8f9;
    background: #f8fafc;
}

.btn-icon {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-icon {
    transform: translateX(0.25rem);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: fadeIn 0.8s ease-out 0.4s backwards;
}

.dashboard-card {
    position: relative;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(40px);
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(226, 232, 240, 0.6);
    padding: 2rem;
}

.dashboard-content {
    position: relative;
}

.metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.metric-card {
    border-radius: 1rem;
    padding: 1.25rem;
    border: 1px solid;
}

.metric-cyan {
    background: linear-gradient(to bottom right, #ecfeff, #e0f2fe);
    border-color: rgba(6, 182, 212, 0.5);
}

.metric-blue {
    background: linear-gradient(to bottom right, #dbeafe, #e0e7ff);
    border-color: rgba(59, 130, 246, 0.5);
}

.metric-label {
    font-size: 0.875rem;
    color: #0e7490;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.metric-value {
    font-size: 1.875rem;
    font-weight: 700;
    color: #0f172a;
}

.metric-subtitle {
    font-size: 0.75rem;
    color: #64748b;
    margin-top: 0.25rem;
}

.insight-card {
    background: linear-gradient(to bottom right, #fffbeb, #ffedd5);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(251, 191, 36, 0.5);
}

.insight-header {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.insight-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    background: rgba(251, 191, 36, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.insight-icon svg {
    width: 1rem;
    height: 1rem;
    color: #b45309;
}

.insight-badge {
    font-size: 0.75rem;
    font-weight: 700;
    color: #78350f;
    margin-bottom: 0.25rem;
}

.insight-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #0f172a;
}

.insight-text {
    font-size: 0.75rem;
    color: #334155;
    line-height: 1.5;
}

.decorative-arrow {
    position: absolute;
    right: -1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #06b6d4;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.decorative-arrow svg {
    width: 2rem;
    height: 2rem;
}

/* Problem Section */
.problem-section {
    padding: 6rem 0;
    background: #f8fafc;
}

.section-header {
    max-width: 48rem;
    margin: 0 auto 4rem;
    text-align: center;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.25rem;
    color: #475569;
    line-height: 1.75;
}

.section-description strong {
    color: #0f172a;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.problem-card {
    background: #ffffff;
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.problem-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.problem-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.problem-red {
    background: #fee2e2;
    color: #dc2626;
}

.problem-amber {
    background: #fef3c7;
    color: #f59e0b;
}

.problem-blue {
    background: #dbeafe;
    color: #3b82f6;
}

.problem-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.problem-text {
    color: #475569;
    line-height: 1.75;
}

.quote-card {
    max-width: 48rem;
    margin: 0 auto;
    background: linear-gradient(to right, #0891b2, #3b82f6);
    border-radius: 1rem;
    padding: 3rem;
    text-align: center;
}

.quote-text {
    font-size: 1.5rem;
    font-weight: 300;
    color: #ffffff;
    line-height: 1.75;
}

.quote-text strong {
    font-weight: 600;
}

/* Approach Section */
.approach-section {
    padding: 6rem 0;
    background: #ffffff;
}

.approach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.process-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateX(0.5rem);
}

.step-number {
    flex-shrink: 0;
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    background: linear-gradient(to bottom right, #0891b2, #3b82f6);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 10px 15px -3px rgba(6, 182, 212, 0.25);
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    box-shadow: 0 20px 25px -5px rgba(6, 182, 212, 0.4);
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.step-text {
    color: #475569;
    line-height: 1.75;
}

.principles-card {
    background: linear-gradient(to bottom right, #f8fafc, rgba(6, 182, 212, 0.05));
    border-radius: 1.5rem;
    padding: 3rem;
    border: 1px solid rgba(226, 232, 240, 0.6);
}

.principles-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 2rem;
}

.principles-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.principle-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.check-icon {
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
    color: #0891b2;
    margin-top: 0.125rem;
}

.principle-item p {
    color: #334155;
    font-weight: 500;
}

/* Technology Section */
.technology-section {
    padding: 6rem 0;
    background: #0f172a;
    color: #ffffff;
}

.technology-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.technology-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.technology-title {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
}

.highlight-cyan {
    color: #67e8f9;
}

.technology-description {
    font-size: 1.125rem;
    color: #cbd5e1;
    line-height: 1.75;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 1rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.feature-dot {
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 50%;
    background: #67e8f9;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.feature-item p {
    color: #cbd5e1;
}

.technology-visual {
    position: relative;
}

.platform-card {
    background: #1e293b;
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid #334155;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.platform-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #334155;
    margin-bottom: 1rem;
}

.platform-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: rgba(6, 182, 212, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.platform-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #67e8f9;
}

.platform-label {
    font-size: 0.75rem;
    color: #94a3b8;
}

.platform-name {
    font-weight: 600;
}

.platform-metric {
    background: rgba(30, 41, 59, 0.8);
    border-radius: 0.75rem;
    padding: 1rem;
    border: 1px solid rgba(51, 65, 85, 0.5);
    margin-bottom: 1rem;
}

.platform-metric:last-child {
    margin-bottom: 0;
}

.platform-metric-label {
    font-size: 0.875rem;
    color: #94a3b8;
    margin-bottom: 0.25rem;
}

.platform-metric-value {
    font-size: 1.5rem;
    font-weight: 700;
}

.metric-value-cyan {
    color: #67e8f9;
}

.metric-value-amber {
    color: #fbbf24;
}

.metric-value-blue {
    color: #60a5fa;
}

/* Deliver Section */
.deliver-section {
    padding: 6rem 0;
    background: #ffffff;
}

.deliver-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.deliver-card {
    background: #f8fafc;
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    cursor: default;
}

.deliver-card:hover {
    background: #ffffff;
    border-color: #67e8f9;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.deliver-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    background: linear-gradient(to bottom right, #0891b2, #3b82f6);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.deliver-card:hover .deliver-icon {
    transform: scale(1.1);
}

.deliver-icon svg {
    width: 1.75rem;
    height: 1.75rem;
}

.deliver-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.deliver-text {
    color: #475569;
    line-height: 1.75;
}

/* Authority Section */
.authority-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom right, #f8fafc, rgba(6, 182, 212, 0.05));
    text-align: center;
}

.authority-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

.authority-description {
    font-size: 1.25rem;
    color: #475569;
    line-height: 1.75;
    max-width: 48rem;
    margin: 0 auto 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(to right, #0891b2, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
}

.stat-label {
    color: #0f172a;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.stat-sublabel {
    font-size: 0.875rem;
    color: #64748b;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom right, #0891b2, #3b82f6);
    color: #ffffff;
    text-align: center;
}

.cta-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.25rem;
    line-height: 1.75;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.25rem 2.5rem;
    border-radius: 1rem;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-primary {
    background: #ffffff;
    color: #0891b2;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
}

.btn-cta-primary:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
    transform: scale(1.05);
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

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

.btn-cta-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.btn-cta-arrow {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s ease;
}

.btn-cta-primary:hover .btn-cta-arrow {
    transform: translateX(0.25rem);
}

.cta-footnote {
    margin-top: 3rem;
    font-size: 0.875rem;
    opacity: 0.75;
}

/* Footer */
.footer {
    padding: 1rem 0;
    background: #ffffff;
    color: #94a3b8;
}

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

.footer-logo {
    height: 5rem;
}

.footer-tagline {
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.footer-copyright {
    font-size: 0.875rem;
    text-align: center;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-grid,
    .problem-grid,
    .approach-grid,
    .technology-grid,
    .deliver-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .hero-cta,
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn,
    .btn-cta {
        width: 100%;
    }

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

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (min-width: 640px) and (max-width: 768px) {
    .cta-buttons {
        flex-direction: row;
    }
}
