:root {
    --accent: #009494;
    --accent-rgb: 0, 148, 148;
    --primary: #000000;
    --primary-hover: #333333;
    --bg-light: #ffffff;
    --text-main: #000000;
    --text-muted: #666666;
    --border-light: #eeeeee;
    --shadow-main: 0 20px 40px rgba(0, 0, 0, 0.08);
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    /* Premium Brand Gradient */
    --brand-gradient: repeating-linear-gradient(45deg, #ff000033 0%, #0000ff33 5%),
        conic-gradient(from 135deg at 100% 0%, #ff00b3ff 0%, #8233ccff 38%),
        radial-gradient(farthest-corner at 1% 3%, #6600ffff 33%, #fff6dbff 100%);
}

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

body {
    font-family: var(--font-sans);
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

/* Nav */
/* Nav - Floating Capsule */
.nav-floating {
    position: fixed;
    top: 24px;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    pointer-events: none;
    /* Let clicks pass through outside the content */
    animation: navSlideDown 1s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes navSlideDown {
    from {
        transform: translateY(-150%);
        opacity: 0;
    }

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

.nav-content {
    pointer-events: auto;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 0.5rem 0.5rem 0.5rem 1.25rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.05),
        0 12px 24px -4px rgba(0, 0, 0, 0.08),
        inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-content:hover {
    background: rgba(255, 255, 255, 0.9);
    box-shadow:
        0 8px 12px -1px rgba(0, 0, 0, 0.08),
        0 20px 32px -4px rgba(0, 0, 0, 0.12),
        inset 0 0 0 1px rgba(255, 255, 255, 0.4);
    transform: translateY(1px);
}

.nav-logo img {
    height: 24px;
    width: auto;
    display: block;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.nav-logo:hover img {
    opacity: 1;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 99px;
    transition: all 0.2s;
}


.nav-link-highlight {
    position: relative;
    padding: 0.6rem 1.6rem;
    color: #fff;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    background: #000;
    border-radius: 99px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: 0.5rem;
    isolation: isolate;
    overflow: visible;
}

.nav-link-highlight:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -5px rgba(var(--accent-rgb, 0, 148, 148), 0.4);
}

/* The sharp border beam */
.nav-link-highlight::before {
    content: '';
    position: absolute;
    inset: -1px;
    padding: 1px;
    border-radius: inherit;
    background: conic-gradient(from var(--angle, 0deg),
            transparent 50%,
            var(--accent) 80%,
            #fff 95%,
            var(--accent) 100%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    animation: rotate-beam 4s linear infinite;
    z-index: 1;
}

/* The soft following glow */
.nav-link-highlight::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: inherit;
    background: conic-gradient(from var(--angle, 0deg),
            transparent 50%,
            var(--accent) 80%,
            transparent 100%);
    filter: blur(10px);
    opacity: 0.5;
    pointer-events: none;
    animation: rotate-beam 4s linear infinite;
    z-index: -1;
}

@property --angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

@keyframes rotate-beam {
    from {
        --angle: 0deg;
    }

    to {
        --angle: 360deg;
    }
}

.nav-link:hover {
    color: var(--text-main);
    background: rgba(0, 0, 0, 0.03);
}

.btn-nav {
    background: #000;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.6rem 1.25rem;
    border-radius: 99px;
    transition: all 0.2s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-nav:hover {
    background: #222;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.btn-full-width {
    width: 100%;
    justify-content: center;
}

.btn-nav[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-icon {
    width: 24px;
    height: 24px;
    margin-right: 0.5rem;
}

/* Hero */
header {
    text-align: center;
    /* Centering the hero for a bolder look */
    padding: 14rem 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.top-tag {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: #f5f5f7;
    padding: 0.5rem 1rem;
    border-radius: 99px;
}

.hero-title {
    font-size: clamp(2rem, 12vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 0.85;
    margin-bottom: 1.5rem;
    max-width: 1000px;
    color: #111;
}

.hero-title img {
    height: 1.7em;
    width: auto;
    vertical-align: middle;
    display: inline-block;
    margin: 0 0.1em -0.25em 0.0em;
    transform: translateY(-0.16em);
}

.hero-logo-gradient {
    display: inline-block;
    background: var(--brand-gradient);
    background-blend-mode: overlay;
    -webkit-mask: url(../assets/branding/fokus.svg) no-repeat center;
    mask: url(../assets/branding/fokus.svg) no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
    /* Hide the original black image content while maintaining its size */
    object-position: -9999px;
}

.hero-lead {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.cta-group {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 5rem;
    align-items: center;
    justify-content: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn i {
    width: 20px;
    margin-right: 0.5rem;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
}

.btn-white {
    background: white;
    color: black;
    justify-content: center;
}



.badge-ph {
    border: 1.5px solid #ff6154;
    color: #ff6154;
    padding: 0.6rem 1rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.badge-ph span {
    font-size: 0.6rem;
    opacity: 0.7;
}

/* Mockup */
/* Mockup CSS Device */
.hero-mockup {
    margin-top: 4rem;
    width: 100%;
    position: relative;
    padding-bottom: 4rem;
    perspective: 1000px;
}

.mockup-container {
    position: relative;
    /* Device Bezel / Frame */
    background: #1f1f1f;
    padding: 2%;
    /* Bezel thickness relative to width */
    border-radius: 20px;
    box-shadow:
        0 40px 80px -20px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    /* Subtle inner highlight */
    max-width: 1000px;
    margin: 0 auto;
}

/* The actual screen area */
.mockup-screen {
    position: relative;
    width: 100%;
    /* 16:9 aspect ratio standard widscreen */
    aspect-ratio: 16/9;
    background: #1a1a1a url('../assets/mockups/print.png') no-repeat center;
    background-size: cover;
    border-radius: 6px;
    /* Slightly rounded corners inside the bezel */
    overflow: hidden;
}

/* Blurred background effect while loading */
.mockup-screen::before {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    filter: blur(20px) brightness(0.7);
    transform: scale(1.1);
    /* Prevent white edges from blur */
    z-index: 0;
}


.mockup-video {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mockup-demo-tag {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    color: rgba(255, 255, 255, 0.8);
    padding: 0.4rem 0.8rem;
    border-radius: 99px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 5;
    animation: fadeIn 1s ease-out;
}

.video-mute-btn {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
}

.video-mute-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.video-mute-btn i {
    width: 18px;
    height: 18px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

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

/* Optional: Reflections/Gloss on the screen */
.mockup-screen::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
    pointer-events: none;
    z-index: 2;
}

/* Optional: Camera/Webcam dot */
.mockup-container::before {
    content: '';
    position: absolute;
    top: 1.2%;
    left: 50%;
    transform: translateX(-50%);
    width: 0.6%;
    padding-bottom: 0.6%;
    /* Makes it a square based on width */
    background: #333;
    border-radius: 50%;
    box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.5) inset;
    z-index: 10;
}

/* Specific to the prompt look */
.gradient-text {
    /* Keeping the structure but making it dark in this new theme */
    color: inherit;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}


/* Sections Common */
section {
    padding: 8rem 0;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: #f9f9fb;
    padding: 2.5rem;
    border-radius: 24px;
    transition: transform 0.2s;
}

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

.feature-icon {
    background: #fff;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card.featured {
    background: #000;
    color: #fff;
    border: none;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: scale(1.02);
}

.pricing-card.featured .price-amount,
.pricing-card.featured p,
.pricing-card.featured .check-list li {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-card.coming-soon {
    background: #f9f9fb;
    border: 1px dashed var(--border-light);
    filter: blur(4px);
    opacity: 0.6;
    pointer-events: none;
    user-select: none;
}

.pricing-card.coming-soon .price-amount {
    opacity: 0.3;
}

.disabled-cursor {
    cursor: not-allowed;
}

.price-header {
    margin-bottom: 2rem;
}

.plan-name {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    display: block;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text-main);
}

.check-list {
    list-style: none;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.check-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Download Section */
#download {
    background: #f5f5f7;
    border-radius: 32px;
    padding: 6rem 2rem;
    text-align: center;
    margin: 4rem 0;
}

.download-subtitle {
    color: var(--text-muted);
    margin-bottom: 2rem;
    margin-top: 1rem;
}

footer {
    border-top: 1px solid var(--border-light);
    padding: 3rem 0;
    margin-top: 4rem;
    background: #fff;
    color: var(--text-muted);
}

.footer-simple {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.footer-simple a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
}

.footer-simple a:hover {
    opacity: 0.7;
}

@media (max-width: 600px) {
    .footer-simple {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-floating {
        top: 16px;
        width: 100%;
        padding: 0 1rem;
    }

    .nav-content {
        width: 100%;
        max-width: 400px;
        justify-content: center;
        /* Centered if links are hidden */
        padding: 0.6rem 1rem;
    }

    .nav-links {
        gap: 0.25rem;
    }

    .nav-link {
        display: none;
        /* Hide text links on mobile */
    }

    .nav-logo img {
        height: 20px;
    }

    header {
        padding-top: 8rem;
        align-items: center;
        text-align: center;
    }

    .hero-title {
        font-size: clamp(2.5rem, 10vw, 3rem);
        line-height: 1.1;
    }

    .hero-lead {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

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

    .mobile-notice {
        font-size: 0.8rem;
        color: var(--text-muted);
        margin-top: -0.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .features-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 2rem;
    }

    .pricing-card {
        padding: 2rem;
        transform: none !important;
    }

    #download {
        padding: 4rem 1.5rem;
    }
}

.mobile-hide {
    display: inline;
}

@media (max-width: 768px) {
    .mobile-hide {
        display: none;
    }
}

/* Download Options */
.download-options {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.download-notice {
    margin-top: 2rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.download-notice a {
    color: var(--text-main);
    text-decoration: underline;
    font-weight: 600;
    transition: opacity 0.2s;
}

.download-notice a:hover {
    opacity: 0.7;
}

.mac-downloads {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-secondary {
    background: #e0e0e0;
    color: #333;
    font-size: 0.9rem;
    padding: 0.6rem 1.25rem;
    text-decoration: none;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    background: #d0d0d0;
    transform: translateY(-1px);
}

@media (max-width: 600px) {
    .mac-downloads {
        flex-direction: column;
        width: 100%;
    }
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}
