* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", sans-serif;
    background-color: #f6f8fa;
    color: #0f2a44;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

.page {
    max-width: 1080px;
    margin: 0 auto;
    padding: 20px;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0 8px;
}

.logo {
    font-weight: 700;
    font-size: 1.35rem;
    letter-spacing: 0.04em;
}

.logo span {
    color: #2ed573;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(46, 213, 115, 0.08);
    font-size: 0.8rem;
    color: #256d3c;
}

.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #2ed573;
    box-shadow: 0 0 0 4px rgba(46, 213, 115, 0.25);
}

.hero {
    padding: 36px 0 30px;
}

.hero h1 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    line-height: 1.08;
    margin: 12px 0 12px;
    max-width: 760px;
}

.hero-sub {
    font-size: 1.05rem;
    opacity: 0.9;
    max-width: 680px;
}

.hero-note {
    margin-top: 12px;
    font-size: 0.9rem;
    opacity: 0.85;
}

.hero-card {
    margin-top: 22px;
    background: linear-gradient(145deg, #ffffff, #f3f6fb);
    border-radius: 20px;
    padding: 18px 16px 18px;
    box-shadow: 0 18px 40px rgba(7, 16, 30, 0.14);
    border: 1px solid rgba(15, 42, 68, 0.06);
}

.hero-card h2 {
    font-size: 1.15rem;
    margin-bottom: 6px;
}

.hero-card p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 12px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.demo-video-section {
    padding-top: 10px;
}

.demo-video-card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 28px;
    align-items: center;
    background: #ffffff;
    border: 1px solid rgba(15, 42, 68, 0.08);
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 14px 36px rgba(15, 42, 68, 0.08);
}

.demo-video-text h2 {
    margin-bottom: 10px;
}

.demo-video-text p {
    margin: 0 0 14px;
    color: rgba(15, 42, 68, 0.78);
    line-height: 1.65;
}

.demo-video-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 18px;
    overflow: hidden;
    background: #0f172a;
    box-shadow: 0 18px 38px rgba(15, 42, 68, 0.16);
}

.demo-video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.demo-video-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #256d3c;
    margin-bottom: 8px;
}

.demo-video-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    flex-direction: column;
    gap: 10px;
}

.demo-video-play {
    width: 72px;
    height: 72px;
    border-radius: 999px;
    background: rgba(255,255,255,.16);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.demo-video-caption {
    font-weight: 700;
}

@media (max-width: 850px) {
    .demo-video-card {
        grid-template-columns: 1fr;
        padding: 18px;
    }
}

.early-access {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.early-access input[type="email"] {
    flex: 1 1 180px;
    min-width: 0;
    padding: 9px 10px;
    border-radius: 999px;
    border: 1px solid rgba(15, 42, 68, 0.18);
    font-size: 0.9rem;
    outline: none;
}

.early-access input[type="email"]:focus {
    border-color: #2ed573;
    box-shadow: 0 0 0 2px rgba(46, 213, 115, 0.25);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.92rem;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: transform 0.1s ease, box-shadow 0.1s ease, background-color 0.1s ease, opacity 0.1s ease;
}

.btn-primary {
    background-color: #2ed573;
    color: #0f2a44;
    box-shadow: 0 8px 18px rgba(46, 213, 115, 0.35);
}

.btn-primary:hover {
    background-color: #29c667;
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(46, 213, 115, 0.4);
}

.btn-ghost {
    background: #ffffff;
    border: 1px solid rgba(15, 42, 68, 0.18);
    color: #0f2a44;
}

.btn-ghost:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(15, 42, 68, 0.06);
}

.btn-ghost-light {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.55);
    color: white;
}

.btn-ghost-light:hover {
    background: rgba(255, 255, 255, 0.06);
}

.small-note {
    font-size: 0.8rem;
    opacity: 0.78;
    margin-top: 6px;
}

section {
    padding: 20px 0 12px;
}

.section-title {
    font-size: 1.22rem;
    margin-bottom: 6px;
}

.section-sub {
    font-size: 0.92rem;
    opacity: 0.8;
    margin-bottom: 12px;
    max-width: 760px;
}

.grid-2 {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 16px;
}

.card {
    background: #ffffff;
    border-radius: 16px;
    padding: 14px 14px 16px;
    box-shadow: 0 10px 26px rgba(15, 42, 68, 0.06);
    font-size: 0.88rem;
    border: 1px solid rgba(15, 42, 68, 0.06);
}

.card h3 {
    font-size: 0.98rem;
    margin-bottom: 4px;
}

.card p {
    opacity: 0.85;
}

.list {
    margin-top: 6px;
    padding-left: 16px;
    font-size: 0.88rem;
}

.list li {
    margin-bottom: 4px;
}

.list li::marker {
    color: #2ed573;
}

.timeline {
    list-style: none;
    padding-left: 0;
    border-left: 2px solid rgba(15, 42, 68, 0.1);
    margin: 8px 0 4px;
}

.timeline-item {
    padding-left: 12px;
    margin-bottom: 8px;
    position: relative;
    font-size: 0.88rem;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: -6px;
    top: 5px;
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: #2ed573;
}

.timeline-label {
    font-weight: 600;
    margin-right: 4px;
}

.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 6px;
}

.pill {
    padding: 5px 10px;
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 10px 22px rgba(15, 42, 68, 0.06);
    font-size: 0.8rem;
    border: 1px solid rgba(15, 42, 68, 0.06);
}

.cta-block {
    background: linear-gradient(135deg, #0f2a44, #122f54);
    border-radius: 20px;
    padding: 18px 16px 18px;
    color: white;
    text-align: center;
    box-shadow: 0 20px 50px rgba(7, 16, 30, 0.5);
    margin: 14px 0 26px;
}

.cta-block h2 {
    font-size: 1.25rem;
    margin-bottom: 6px;
}

.cta-block p {
    font-size: 0.9rem;
    opacity: 0.92;
    margin-bottom: 12px;
}

footer {
    border-top: 1px solid rgba(15, 42, 68, 0.08);
    padding: 14px 0 8px;
    font-size: 0.8rem;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    align-items: center;
    justify-content: space-between;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* Bloggsnurra startsida */
.blog-roll {
    padding: 18px 0 10px;
}

.blog-roll-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(15, 42, 68, 0.18);
    color: #0f2a44;
}

.btn-outline:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(15, 42, 68, 0.08);
}

.blog-roll-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.blog-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 14px 14px 16px;
    box-shadow: 0 10px 26px rgba(15, 42, 68, 0.06);
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: transform 0.12s ease, box-shadow 0.12s ease;
    border: 1px solid rgba(15, 42, 68, 0.06);
}

.blog-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(15, 42, 68, 0.12);
}

.blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: 0.78rem;
    opacity: 0.85;
}

.blog-tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(46, 213, 115, 0.10);
    color: #256d3c;
    font-weight: 600;
}

.blog-date {
    color: rgba(15, 42, 68, 0.72);
}

.blog-card h3 {
    font-size: 0.98rem;
    line-height: 1.25;
    margin: 0;
}

.blog-card p {
    margin: 0;
    font-size: 0.88rem;
    opacity: 0.85;
}

.blog-cta {
    margin-top: 2px;
    font-weight: 700;
    font-size: 0.88rem;
    color: #256d3c;
}

.blog-cover {
    width: calc(100% + 28px);
    height: 150px;
    margin: -14px -14px 2px;
    background-size: cover;
    background-position: center;
    border-radius: 16px 16px 0 0;
}

.blog-cover--fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f2a44, #16365d);
    color: rgba(255,255,255,0.9);
    font-weight: 700;
    letter-spacing: 0.03em;
}

.blog-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

@media (max-width: 900px) {
    .blog-roll-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .page {
        padding: 12px;
    }

    header {
        align-items: flex-start;
        flex-direction: column;
    }

    .header-actions {
        width: 100%;
    }

    .header-actions .btn {
        width: 100%;
    }

    .grid-2 {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-card {
        padding: 16px 14px 16px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .cta-block {
        text-align: left;
    }

    .blog-roll-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .blog-roll-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.95rem;
    }

    .early-access {
        flex-direction: column;
        align-items: stretch;
    }
}