:root {
    --primary: #ff6600;
    --primary-dark: #cc5200;
    --background: #050505;
    --surface: #111111;
    --text: #ffffff;
    --text-dim: #a1a1a1;
    --accent: #764ba2;
    --font-main: 'Outfit', sans-serif;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Background Glow */
.glow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.glow {
    position: absolute;
    width: 600px;
    height: 600px;
    filter: blur(150px);
    opacity: 0.15;
    border-radius: 50%;
}

.glow-1 {
    top: -200px;
    right: -100px;
    background: var(--primary);
    animation: float 20s infinite alternate;
}

.glow-2 {
    bottom: -200px;
    left: -100px;
    background: var(--accent);
    animation: float 25s infinite alternate-reverse;
}

@keyframes float {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(100px, 100px);
    }
}

/* Header */
header {
    padding: 2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text);
}

.logo svg {
    color: var(--primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 600;
}

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

.btn-nav {
    background: var(--text);
    color: var(--background) !important;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
}

/* Hero */
.hero {
    padding: 6rem 0;
    display: flex;
    align-items: center;
}

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

h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 800;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-dim);
    margin-bottom: 3rem;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    text-decoration: none;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 102, 0, 0.4);
}

.version-badge {
    color: var(--text-dim);
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
}

.hero-image {
    perspective: 1000px;
}

.image-wrapper {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    padding: 1rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s;
}

.image-wrapper:hover {
    transform: rotateY(0) rotateX(0);
}

.hero-image img {
    width: 100%;
    border-radius: 16px;
    display: block;
}

/* Promo Section & Simulations */
.promo-section {
    padding: 8rem 0;
}

.promo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.promo-card {
    background: rgba(17, 17, 17, 0.4);
    backdrop-filter: blur(20px);
    border-radius: 40px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.4s, box-shadow 0.4s;
    position: relative;
    opacity: 0;
    animation: fadeInScale 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.promo-card:nth-child(1) {
    animation-delay: 0.1s;
}

.promo-card:nth-child(2) {
    animation-delay: 0.2s;
}

.promo-card:nth-child(3) {
    animation-delay: 0.3s;
}

.promo-card:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
}

.promo-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255, 102, 0, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 102, 0, 0.1);
}

.promo-card:hover::before {
    opacity: 1;
}

.promo-text h3 {
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
    font-weight: 800;
}

.promo-text p {
    color: var(--text-dim);
    font-size: 1.1rem;
    line-height: 1.5;
}

.app-simulation {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 24px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.sim-window {
    background: #121212;
    border-radius: 14px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.12);
    overflow: hidden;
}

/* Multi-Timer simulation */
.multi-sim-area {
    perspective: 1000px;
}

.floating-sim.multi-1 {
    transform: translate(-30px, -20px) rotate(-5deg);
    animation: float-multi-1 5s infinite ease-in-out;
}

.floating-sim.multi-2 {
    transform: translate(40px, 10px) rotate(3deg);
    animation: float-multi-2 6s infinite ease-in-out;
}

.floating-sim.multi-3 {
    transform: translate(-10px, 40px) rotate(1deg);
    animation: float-multi-3 7s infinite ease-in-out;
    position: absolute;
}

@keyframes float-multi-1 {

    0%,
    100% {
        transform: translate(-30px, -20px) rotate(-5deg);
    }

    50% {
        transform: translate(-35px, -30px) rotate(-7deg);
    }
}

@keyframes float-multi-2 {

    0%,
    100% {
        transform: translate(40px, 10px) rotate(3deg);
    }

    50% {
        transform: translate(45px, 0px) rotate(5deg);
    }
}

@keyframes float-multi-3 {

    0%,
    100% {
        transform: translate(-10px, 40px) rotate(1deg);
    }

    50% {
        transform: translate(-5px, 30px) rotate(0deg);
    }
}

/* Full App Simulation */
.full-app-sim {
    width: 320px;
    background: #000;
}

.sim-header.orange {
    background: #ff6600;
    padding: 0.75rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sim-logo-area {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 0.85rem;
    color: white;
}

.sim-actions {
    display: flex;
    gap: 10px;
    font-size: 0.8rem;
    opacity: 0.8;
}

.sim-main-content {
    padding: 1.5rem;
}

.sim-input-row {
    display: flex;
    gap: 8px;
    margin-bottom: 1.5rem;
}

.sim-input-mock {
    flex: 1;
    background: #111;
    border: 1px solid #ff660077;
    border-radius: 8px;
    padding: 0.75rem;
    font-size: 0.7rem;
    color: #444;
}

.sim-btn-play {
    background: #ff6600;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.sim-presets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 2rem;
}

.sim-presets span {
    background: #1a1a1a;
    padding: 0.6rem;
    border-radius: 6px;
    font-size: 0.7rem;
    color: #ff9900;
    text-align: center;
    border: 1px solid #ffffff05;
}

.sim-timer-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sim-timer-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sim-timer-item.active {
    border-color: #ff660044;
}

.sim-timer-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.green {
    background: #27c93f;
    box-shadow: 0 0 10px rgba(39, 201, 63, 0.4);
}

.dot.gray {
    background: #555;
}

.sim-timer-item .tag {
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
}

.sim-timer-val {
    font-weight: 800;
    font-size: 1.2rem;
    color: #ff6600;
}

.main-app-sim {
    width: 280px;
}

.sim-header {
    background: #1a1a1a;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid #333;
}

.sim-dots {
    display: flex;
    gap: 6px;
}

.sim-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.sim-dots span:nth-child(1) {
    background: #ff5f56;
}

.sim-dots span:nth-child(2) {
    background: #ffbd2e;
}

.sim-dots span:nth-child(3) {
    background: #27c93f;
}

.sim-title {
    font-size: 0.8rem;
    color: var(--text-dim);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.sim-content {
    padding: 2.5rem 1.5rem;
}

.sim-input-box {
    background: #000;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.5);
}

.typing-text {
    font-size: 1rem;
    color: var(--text);
    border-right: 2px solid var(--primary);
    animation: blink 1s infinite;
    min-height: 1.2rem;
    font-weight: 600;
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}

.sim-start-btn {
    background: var(--primary);
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
    border-radius: 6px;
    font-weight: 700;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

/* Floating Sim */
.floating-sim {
    width: 240px;
    background: rgba(18, 18, 18, 0.85);
    backdrop-filter: blur(25px);
    animation: float-sim 6s infinite ease-in-out;
}

@keyframes float-sim {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(15px, -25px) rotate(2deg);
    }
}

.sim-drag-handle {
    height: 7px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.sim-drag-handle.p1 {
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.sim-drag-handle.p2 {
    background: linear-gradient(90deg, #f093fb, #f5576c);
}

.sim-drag-handle.p3 {
    background: linear-gradient(90deg, #4facfe, #00f2fe);
}

.sim-floating-content {
    padding: 1.5rem;
    text-align: center;
}

.sim-time {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #fff 0%, #aaa 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sim-time.small {
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
}

.sim-tag {
    font-size: 0.9rem;
    color: var(--text-dim);
    font-weight: 600;
}

/* Showcase */
.showcase {
    padding: 6rem 0;
}

.showcase-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    margin-bottom: 8rem;
}

.showcase-row.reverse {
    direction: rtl;
}

.showcase-row.reverse .showcase-content {
    direction: ltr;
}

.showcase-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.showcase-content p {
    font-size: 1.1rem;
    color: var(--text-dim);
}

.showcase-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

/* Download Section */
.download-section {
    padding: 8rem 0;
}

.download-card {
    background: linear-gradient(135deg, #111, #000);
    padding: 6rem 2rem;
    border-radius: 40px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.download-card h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.download-card p {
    font-size: 1.2rem;
    color: var(--text-dim);
    margin-bottom: 3rem;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--text);
    color: var(--background);
    padding: 1.5rem 3rem;
    border-radius: 20px;
    font-weight: 800;
    font-size: 1.5rem;
    text-decoration: none;
    transition: transform 0.3s;
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.1);
}

.btn-download:hover {
    transform: scale(1.05);
}

.sub-text {
    margin-top: 2rem !important;
    font-size: 0.9rem !important;
}

/* Footer */
footer {
    padding: 4rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

footer p {
    color: var(--text-dim);
    font-size: 0.9rem;
    opacity: 0.6;
}

@media (max-width: 968px) {

    .hero .container,
    .showcase-row {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero p {
        margin: 0 auto 3rem;
    }

    .hero-actions {
        justify-content: center;
    }

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

    h1 {
        font-size: 3rem;
    }

    .showcase-row.reverse {
        direction: ltr;
    }
}