<!doctype html>
<html lang="de">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>PRYNXT – Startpage</title>
<style>
:root{
--bg:#eeeeee; --text:#0b2d5c; --tile:#f8f8f8;
--tile-border: rgba(11,45,92,0.15);
--shadow: 0 6px 18px rgba(0,0,0,0.06);
--radius: 14px; --maxw: 980px;
}
*{ box-sizing:border-box; }
body{ margin:0; font-family:Arial,Helvetica,sans-serif; background:var(--bg); color:var(--text); line-height:1.35; }
header{ max-width:var(--maxw); margin:48px auto 22px; padding:0 18px; }
.brand{ font-size:28px; letter-spacing:.5px; font-weight:700; margin:0 0 6px; }
.subtitle{ margin:0; opacity:.85; font-size:14px; }
main{ max-width:var(--maxw); margin:0 auto 60px; padding:0 18px; }
.grid{ display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:14px; }
.tile{ background:var(--tile); border:1px solid var(--tile-border); border-radius:var(--radius); box-shadow:var(--shadow); padding:18px; min-height:140px; }
.tile h2{ margin:0 0 10px; font-size:18px; }
.tile p{ margin:0; font-size:14px; opacity:.9; }
footer{ max-width:var(--maxw); margin:22px auto 30px; padding:0 18px; font-size:12px; opacity:.75; }
@media (max-width:900px){ .grid{ grid-template-columns:repeat(2,minmax(0,1fr)); } }
@media (max-width:560px){ header{ margin-top:28px; } .grid{ grid-template-columns:1fr; } .tile{ min-height:120px; } }
</style>
</head>
<body>
<header>
<h1 class="brand">PRYNXT</h1>
<p class="subtitle">Startpage (minimalistisch) – Stand: 2026-01-13</p>
</header>
<main>
<section class="grid" aria-label="Kategorien">
<article class="tile"><h2>Gadgets</h2><p>Text folgt.</p></article>
<article class="tile"><h2>Deko</h2><p>Text folgt.</p></article>
<article class="tile"><h2>Pro</h2><p>Text folgt.</p></article>
</section>
</main>
<footer>© PRYNXT – prynxt.com</footer>
</body>
</html>