
* {
    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: 900px;
    margin: 0 auto;
    padding: 16px;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 4px;
}

.logo {
    font-weight: 700;
    font-size: 1.35rem;
    letter-spacing: 0.04em;
}

.logo span {
    color: #2ed573;
}

.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: 28px 0 26px;
}

.hero h1 {
    font-size: clamp(2rem, 3vw, 2.5rem);
    line-height: 1.15;
    margin: 12px 0 8px;
}

.hero-sub {
    font-size: 1rem;
    opacity: 0.85;
    max-width: 560px;
}

.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.16);
}

.hero-card h2 {
    font-size: 1.15rem;
    margin-bottom: 6px;
}

.hero-card p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 12px;
}

.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: 9px 18px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    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: transparent;
    border: 1px solid rgba(255, 255, 255, 0.55);
    color: white;
}

.small-note {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: 6px;
}

section {
    padding: 18px 0 10px;
}

.section-title {
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.section-sub {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 12px;
}

.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;
}

.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;
}

.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;
}

@media (max-width: 720px) {
    .page {
        padding: 12px;
    }

    .grid-2 {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-card {
        padding: 16px 14px 16px;
    }

    .cta-block {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.7rem;
    }

    .early-access {
        flex-direction: column;
        align-items: stretch;
    }
}


/* 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;
}

@media (max-width: 900px) {
  .blog-roll-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .blog-roll-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .blog-roll-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Gör ghost-knappar läsbara även på vit bakgrund */
.btn.btn-ghost {
  border: 1px solid rgba(15, 42, 68, 0.18);
  color: #0f2a44;
  background: #fff;
  z-index: 10000;
}

.btn.btn-ghost:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(15, 42, 68, 0.06);
}