:root {
  --bg: #0b0b0d;
  --surface: #141417;
  --surface-hover: #1a1a1e;
  --border: rgba(255, 255, 255, 0.08);
  --text: #f5f5f7;
  --muted: #9a9aa3;
  --faint: #6b6b74;
  --prisio: #ec6a2c;
  --nota: #bff233;
  --lonekoll: #57a96f;
  --radius: 20px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto,
    "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(11, 11, 13, 0.72);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.wordmark {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.wordmark span {
  color: var(--faint);
  font-weight: 500;
}

.lang {
  display: flex;
  gap: 4px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px;
  font-size: 0.8rem;
}

.lang a {
  padding: 3px 12px;
  border-radius: 999px;
  color: var(--muted);
  transition: color 0.15s;
}

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

.lang a.active {
  background: var(--text);
  color: var(--bg);
  font-weight: 600;
}

/* Hero */
.hero {
  padding: 110px 0 90px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  font-weight: 750;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.hero h1 .amp {
  color: var(--faint);
  font-weight: 400;
}

.hero p {
  margin: 22px auto 0;
  max-width: 34em;
  color: var(--muted);
  font-size: 1.15rem;
}

.hero .cta {
  display: inline-block;
  margin-top: 36px;
  padding: 12px 28px;
  border-radius: 999px;
  background: var(--text);
  color: var(--bg);
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.15s, opacity 0.15s;
}

.hero .cta:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}

/* Sections */
section {
  padding: 70px 0;
}

.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 28px;
}

/* App cards */
.apps {
  display: grid;
  gap: 20px;
}

.app {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 24px;
  align-items: center;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: background 0.2s, border-color 0.2s;
}

.app:hover {
  background: var(--surface-hover);
}

.app.prisio:hover {
  border-color: color-mix(in srgb, var(--prisio) 45%, transparent);
}

.app.nota:hover {
  border-color: color-mix(in srgb, var(--nota) 40%, transparent);
}

.app.lonekoll:hover {
  border-color: color-mix(in srgb, var(--lonekoll) 45%, transparent);
}

.app img.icon {
  width: 88px;
  height: 88px;
  border-radius: 22px;
  display: block;
}

.app h3 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.app p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.97rem;
  max-width: 46em;
}

.app .links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}

.app .links img.badge {
  height: 40px;
  display: block;
}

.app .site-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 9px 18px;
  transition: border-color 0.15s, background 0.15s;
}

.app .site-link:hover {
  background: var(--surface-hover);
  border-color: rgba(255, 255, 255, 0.2);
}

.prisio .site-link:hover {
  border-color: var(--prisio);
}

.nota .site-link:hover {
  border-color: var(--nota);
}

/* Contact */
.contact {
  text-align: center;
  border-top: 1px solid var(--border);
}

.contact h2 {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.contact p {
  margin-top: 10px;
  color: var(--muted);
}

.contact a.mail {
  display: inline-block;
  margin-top: 20px;
  font-size: 1.1rem;
  font-weight: 600;
  border-bottom: 1px solid var(--faint);
  padding-bottom: 2px;
  transition: border-color 0.15s;
}

.contact a.mail:hover {
  border-color: var(--text);
}

/* Footer */
footer {
  border-top: 1px solid var(--border);
  padding: 32px 0 48px;
  text-align: center;
  color: var(--faint);
  font-size: 0.85rem;
}

@media (max-width: 560px) {
  .app {
    grid-template-columns: 1fr;
  }

  .app img.icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
  }

  .hero {
    padding: 80px 0 60px;
  }
}
