/* project-cockpit.eu teaser page: page rules on top of project-cockpit-tokens.css and bundle.css
   (design-system/README.md, layout.md). Semantic tokens only; the one departure from the type
   scale is the hero heading, which grows past `display` (32px) on wide screens because a
   public landing page reads from further away than a product screen. */
html, body { margin: 0; padding: 0; background: var(--surface); color: var(--text-primary); font-family: var(--font-sans); }
.site { min-height: 100vh; display: flex; flex-direction: column; }
.site-main { flex: 1; }
.site-wrap { width: 100%; max-width: 1056px; margin: 0 auto; padding: 0 var(--space-4); box-sizing: border-box; }
@media (min-width: 640px) { .site-wrap { padding: 0 var(--space-6); } }
.site-brand { color: var(--accent); }
.site-brand-name { color: var(--text-primary); }
a { color: var(--accent); }

.site-hero { padding: var(--space-10) 0 var(--space-8); }
@media (max-width: 639px) { .site-hero { padding: var(--space-8) 0 var(--space-6); } }
.site-hero .pc-overline { margin: 0 0 var(--space-3); }
.site-display { margin: 0 0 var(--space-4); font-size: 32px; line-height: 40px; font-weight: 600; letter-spacing: -0.01em; max-width: 22ch; }
@media (min-width: 768px) { .site-display { font-size: 44px; line-height: 52px; } }
.site-lead { margin: 0 0 var(--space-5); font-size: 20px; line-height: 28px; color: var(--text-muted); max-width: 58ch; }
@media (max-width: 639px) { .site-lead { font-size: 17px; line-height: 24px; } }
.site-status { display: inline-flex; align-items: center; gap: var(--space-2); margin: 0; font-size: 14px; line-height: 20px; color: var(--text-muted); }
.site-status .pc-icon { color: var(--urgency-attention-fg); }

.site-band { background: var(--surface-sunken); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: var(--space-8) 0; }
.site-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-6); align-items: start; }
@media (max-width: 859px) { .site-grid { grid-template-columns: 1fr; } }
.site-card { padding: var(--space-6); border-radius: var(--radius-lg); }
@media (max-width: 639px) { .site-card { padding: var(--space-4); } }
.site-card h2 { margin: 0 0 var(--space-3); font-size: 20px; line-height: 28px; font-weight: 600; }
.site-card p { margin: 0 0 var(--space-4); font-size: 16px; line-height: 24px; }
.site-card .pc-alert { align-items: flex-start; }
.site-card .pc-alert .pc-icon { margin-top: 2px; }

.site-form { display: flex; flex-direction: column; gap: var(--space-4); }
.site-two { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
@media (max-width: 519px) { .site-two { grid-template-columns: 1fr; } }
.site-form .pc-field { margin: 0; }
.site-form .pc-label .pc-muted { font-weight: 400; }
.site-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.site-actions { display: flex; flex-direction: column; gap: var(--space-3); align-items: flex-start; }
.site-fine { margin: 0; max-width: 60ch; }
.site-msg { margin: 0; }
.site-msg[hidden] { display: none; }

.site-foot { padding: var(--space-6) 0 var(--space-8); font-size: 14px; line-height: 20px; color: var(--text-muted); }
.site-foot-row { display: flex; flex-wrap: wrap; gap: var(--space-2) var(--space-6); justify-content: space-between; margin-bottom: var(--space-2); }
.site-foot a { color: var(--text-muted); }
@media (prefers-reduced-motion: reduce) { * { transition: none !important; animation: none !important; } }
