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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Courier New', 'Monaco', 'Menlo', monospace;
    background-color: #fafafa;
    color: #2d2d2d;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(224, 242, 254, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(209, 250, 229, 0.3) 0%, transparent 50%);
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 60%;
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 25%, #d1fae5 75%, #a7f3d0 100%);
    border-radius: 0 0 0 120px;
    opacity: 0.7;
    z-index: 0;
    animation: gradientShift 8s ease-in-out infinite;
}

body::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 107, 74, 0.05) 0%, transparent 70%);
    z-index: 0;
    animation: float 20s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.1) rotate(2deg);
        opacity: 0.8;
    }
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 20px 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

.nav a:hover {
    color: #ff6b4a;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ff6b4a;
    transition: width 0.3s ease;
}

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

.container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
}

.content {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 60px 40px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.04),
        0 2px 8px rgba(0, 0, 0, 0.02),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    animation: contentFadeIn 1s ease-out;
    position: relative;
    overflow: hidden;
}

.hero {
    margin-bottom: 80px;
}

.content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 107, 74, 0.2) 50%, 
        transparent 100%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes contentFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0%, 100% {
        opacity: 0.2;
    }
    50% {
        opacity: 0.5;
    }
}

.main-message {
    font-size: 32px;
    line-height: 1.6;
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 400;
    letter-spacing: -0.5px;
}

.message-line {
    margin-bottom: 12px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    transition: transform 0.3s ease, color 0.3s ease;
}

.message-line:nth-child(1) {
    animation-delay: 0.2s;
}

.message-line:nth-child(2) {
    animation-delay: 0.4s;
}

.message-line:nth-child(3) {
    animation-delay: 0.6s;
}

.message-line:hover {
    transform: translateX(4px);
    color: #0f172a;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.command-section {
    margin-top: 40px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.8s forwards;
}

.command-prompt {
    color: #666;
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 400;
    letter-spacing: 0.5px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.command-prompt:hover {
    opacity: 1;
}

.command-output {
    margin-left: 20px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.output-item {
    color: #ff6b4a;
    font-size: 18px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: inline-block;
    padding: 4px 8px;
    margin-left: -8px;
    border-radius: 4px;
    letter-spacing: 0.3px;
    font-weight: 500;
}

.output-item::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background-color: #ff6b4a;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.output-item:hover {
    transform: translateX(8px);
    color: #ff4500;
    background-color: rgba(255, 107, 74, 0.08);
    padding-left: 16px;
}

.output-item:hover::before {
    opacity: 1;
    left: 4px;
}

.output-item:active {
    transform: translateX(6px) scale(0.98);
}

.active-prompt {
    color: #666;
    font-size: 18px;
    display: flex;
    align-items: center;
    margin-top: 8px;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.cursor {
    display: inline-block;
    width: 12px;
    height: 20px;
    background-color: #ff6b4a;
    margin-left: 6px;
    animation: blink 1s infinite, pulse 2s ease-in-out infinite;
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(255, 107, 74, 0.4);
}

@keyframes blink {
    0%, 49% {
        opacity: 1;
    }
    50%, 100% {
        opacity: 0.3;
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 8px rgba(255, 107, 74, 0.4);
    }
    50% {
        box-shadow: 0 0 16px rgba(255, 107, 74, 0.6);
    }
}

.section {
    margin-bottom: 80px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.section:nth-of-type(1) {
    animation-delay: 0.2s;
}

.section:nth-of-type(2) {
    animation-delay: 0.4s;
}

.section:nth-of-type(3) {
    animation-delay: 0.6s;
}

.section-title {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 40px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.product-card {
    background-color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: rgba(255, 107, 74, 0.2);
}

.product-card h3 {
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-weight: 600;
}

.product-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 15px;
}

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

.feature-list li {
    color: #444;
    font-size: 14px;
    line-height: 1.8;
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
}

.feature-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #ff6b4a;
    font-weight: bold;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.service-item {
    background-color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateX(4px);
    border-color: rgba(255, 107, 74, 0.2);
    background-color: rgba(255, 255, 255, 0.8);
}

.service-item h3 {
    font-size: 18px;
    color: #1a1a1a;
    margin-bottom: 10px;
    font-weight: 600;
}

.service-item p {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

.contact-section {
    background-color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 40px;
    margin-top: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    font-size: 16px;
    line-height: 1.8;
}

.contact-item strong {
    color: #1a1a1a;
    display: block;
    margin-bottom: 4px;
}

.contact-item a {
    color: #ff6b4a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #ff4500;
    text-decoration: underline;
}

.contact-item address {
    font-style: normal;
    color: #444;
    margin: 0;
}

.footer {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 30px 0;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.footer p {
    color: #666;
    font-size: 14px;
    margin: 8px 0;
}

.footer-company-info {
    font-size: 12px;
    color: #888;
}

.footer-address {
    font-size: 12px;
    color: #888;
}

.company-info-section {
    background-color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 40px;
    margin-top: 40px;
}

.company-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.company-detail-item {
    font-size: 15px;
    line-height: 1.8;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.company-detail-item strong {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #666;
}

.company-detail-item span {
    color: #1a1a1a;
    display: block;
}

@media (max-width: 768px) {
    .main-message {
        font-size: 24px;
    }
    
    .command-prompt,
    .output-item,
    .active-prompt {
        font-size: 16px;
    }
    
    .content {
        padding: 40px 30px;
        border-radius: 12px;
    }
    
    body::before {
        width: 70%;
        height: 50%;
    }

    .header-container {
        padding: 0 20px;
        flex-direction: column;
        gap: 15px;
    }

    .nav {
        gap: 20px;
    }

    .products-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 24px;
    }

    .container {
        padding: 20px;
    }

    .company-details {
        grid-template-columns: 1fr;
    }

    .footer-company-info,
    .footer-address {
        font-size: 11px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

