2026-04-26 22:34:11 +02:00
|
|
|
|
:root {
|
Rewrite copy (positive tone) + redesign target grid
- All section copy rewritten: solution-first framing, no 'klagesang'
- Hero: 'Selvhosternes registrar. Bygget af jer. Kostpris.'
- Section order: target identity first, then what we build, then background
- Rename 'Problemet' → 'Baggrunden', 'Idéen' → 'Hvad vi bygger'
- Remove all victim language (tvinger, mod din vilje, ingen teknisk gevinst)
- Target grid: drop colored backgrounds/borders, clean bordered grid
with row separators, blue checkmarks, muted dashes — no template feel
- Fix inline color styles → CSS classes (.required, .optional)
- Footer: slight copy improvement
2026-04-26 23:27:49 +02:00
|
|
|
|
--primary: #2563EB;
|
|
|
|
|
|
--primary-d: #1D4ED8;
|
|
|
|
|
|
--primary-bg: #EFF6FF;
|
|
|
|
|
|
--hero-bg: #0F172A;
|
|
|
|
|
|
--dark: #111827;
|
|
|
|
|
|
--text: #374151;
|
|
|
|
|
|
--muted: #9CA3AF;
|
|
|
|
|
|
--border: #E5E7EB;
|
|
|
|
|
|
--section-alt:#F9FAFB;
|
2026-04-26 22:39:45 +02:00
|
|
|
|
--white: #FFFFFF;
|
Rewrite copy (positive tone) + redesign target grid
- All section copy rewritten: solution-first framing, no 'klagesang'
- Hero: 'Selvhosternes registrar. Bygget af jer. Kostpris.'
- Section order: target identity first, then what we build, then background
- Rename 'Problemet' → 'Baggrunden', 'Idéen' → 'Hvad vi bygger'
- Remove all victim language (tvinger, mod din vilje, ingen teknisk gevinst)
- Target grid: drop colored backgrounds/borders, clean bordered grid
with row separators, blue checkmarks, muted dashes — no template feel
- Fix inline color styles → CSS classes (.required, .optional)
- Footer: slight copy improvement
2026-04-26 23:27:49 +02:00
|
|
|
|
--red: #DC2626;
|
|
|
|
|
|
--red-bg: #FEF2F2;
|
|
|
|
|
|
--red-border: #FECACA;
|
|
|
|
|
|
--green: #16A34A;
|
|
|
|
|
|
--green-bg: #F0FDF4;
|
|
|
|
|
|
--green-bdr: #BBF7D0;
|
2026-04-26 22:39:45 +02:00
|
|
|
|
--mono: 'IBM Plex Mono', 'Fira Code', 'Consolas', monospace;
|
Rewrite copy (positive tone) + redesign target grid
- All section copy rewritten: solution-first framing, no 'klagesang'
- Hero: 'Selvhosternes registrar. Bygget af jer. Kostpris.'
- Section order: target identity first, then what we build, then background
- Rename 'Problemet' → 'Baggrunden', 'Idéen' → 'Hvad vi bygger'
- Remove all victim language (tvinger, mod din vilje, ingen teknisk gevinst)
- Target grid: drop colored backgrounds/borders, clean bordered grid
with row separators, blue checkmarks, muted dashes — no template feel
- Fix inline color styles → CSS classes (.required, .optional)
- Footer: slight copy improvement
2026-04-26 23:27:49 +02:00
|
|
|
|
|
|
|
|
|
|
/* legacy aliases so tak/admin still work */
|
|
|
|
|
|
--gray-20: #E5E7EB;
|
|
|
|
|
|
--gray-10: #F9FAFB;
|
2026-04-26 22:34:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-04-26 18:20:54 +02:00
|
|
|
|
*, *::before, *::after {
|
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
|
margin: 0;
|
|
|
|
|
|
padding: 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
body {
|
2026-04-26 22:39:45 +02:00
|
|
|
|
font-family: 'IBM Plex Sans', 'Segoe UI', system-ui, sans-serif;
|
2026-04-26 22:34:11 +02:00
|
|
|
|
color: var(--text);
|
2026-04-26 18:20:54 +02:00
|
|
|
|
line-height: 1.65;
|
2026-04-26 22:34:11 +02:00
|
|
|
|
background: var(--white);
|
|
|
|
|
|
font-size: 1rem;
|
2026-04-26 18:20:54 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-04-26 22:39:45 +02:00
|
|
|
|
/* ── Header ─────────────────────────── */
|
2026-04-26 18:20:54 +02:00
|
|
|
|
header {
|
2026-04-26 22:39:45 +02:00
|
|
|
|
background: var(--white);
|
|
|
|
|
|
border-bottom: 1px solid var(--gray-20);
|
2026-04-26 22:34:11 +02:00
|
|
|
|
padding: 0 1.5rem;
|
2026-04-26 22:39:45 +02:00
|
|
|
|
position: sticky;
|
|
|
|
|
|
top: 0;
|
|
|
|
|
|
z-index: 100;
|
2026-04-26 18:20:54 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
header nav {
|
2026-04-26 22:39:45 +02:00
|
|
|
|
max-width: 860px;
|
2026-04-26 18:20:54 +02:00
|
|
|
|
margin: 0 auto;
|
2026-04-26 22:39:45 +02:00
|
|
|
|
height: 56px;
|
2026-04-26 22:34:11 +02:00
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
2026-04-26 18:20:54 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.logo {
|
2026-04-26 22:39:45 +02:00
|
|
|
|
color: var(--dark);
|
2026-04-26 22:34:11 +02:00
|
|
|
|
font-weight: 700;
|
2026-04-26 22:39:45 +02:00
|
|
|
|
font-size: 1.1rem;
|
|
|
|
|
|
letter-spacing: -0.01em;
|
2026-04-26 18:20:54 +02:00
|
|
|
|
text-decoration: none;
|
2026-04-26 22:39:45 +02:00
|
|
|
|
font-family: 'IBM Plex Sans', sans-serif;
|
2026-04-26 18:20:54 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.logo span {
|
2026-04-26 22:39:45 +02:00
|
|
|
|
color: var(--primary);
|
2026-04-26 18:20:54 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* ── Hero ────────────────────────────── */
|
|
|
|
|
|
.hero {
|
2026-04-26 22:39:45 +02:00
|
|
|
|
background: var(--gray-10);
|
|
|
|
|
|
border-bottom: 1px solid var(--gray-20);
|
|
|
|
|
|
padding: 5rem 1.5rem 4.5rem;
|
2026-04-26 22:34:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.hero-inner {
|
2026-04-26 22:39:45 +02:00
|
|
|
|
max-width: 860px;
|
2026-04-26 22:34:11 +02:00
|
|
|
|
margin: 0 auto;
|
2026-04-26 18:20:54 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.hero h1 {
|
2026-04-26 22:39:45 +02:00
|
|
|
|
font-size: clamp(2.75rem, 7vw, 4.5rem);
|
2026-04-26 22:34:11 +02:00
|
|
|
|
font-weight: 700;
|
2026-04-26 22:39:45 +02:00
|
|
|
|
letter-spacing: -0.03em;
|
|
|
|
|
|
margin-bottom: 0.75rem;
|
|
|
|
|
|
line-height: 1.0;
|
|
|
|
|
|
color: var(--dark);
|
2026-04-26 22:34:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.hero h1 .accent {
|
2026-04-26 22:39:45 +02:00
|
|
|
|
color: var(--primary);
|
2026-04-26 18:20:54 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.hero .tagline {
|
2026-04-26 22:34:11 +02:00
|
|
|
|
font-size: clamp(1rem, 2.2vw, 1.2rem);
|
2026-04-26 22:39:45 +02:00
|
|
|
|
color: var(--text);
|
2026-04-26 18:20:54 +02:00
|
|
|
|
margin-bottom: 2rem;
|
2026-04-26 22:34:11 +02:00
|
|
|
|
font-weight: 400;
|
2026-04-26 18:20:54 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.hero .intro {
|
2026-04-26 22:39:45 +02:00
|
|
|
|
font-size: 1.05rem;
|
|
|
|
|
|
color: var(--text);
|
2026-04-26 18:20:54 +02:00
|
|
|
|
line-height: 1.75;
|
2026-04-26 22:34:11 +02:00
|
|
|
|
max-width: 640px;
|
2026-04-26 22:39:45 +02:00
|
|
|
|
border-left: 3px solid var(--primary);
|
2026-04-26 22:34:11 +02:00
|
|
|
|
padding-left: 1rem;
|
2026-04-26 18:20:54 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-04-26 23:12:10 +02:00
|
|
|
|
.hero-cta {
|
|
|
|
|
|
display: inline-block;
|
|
|
|
|
|
margin-top: 2rem;
|
|
|
|
|
|
padding: 0.875rem 2rem;
|
|
|
|
|
|
background: var(--primary);
|
|
|
|
|
|
color: var(--white);
|
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
|
font-size: 0.975rem;
|
|
|
|
|
|
border-radius: 0;
|
|
|
|
|
|
transition: background 0.15s;
|
|
|
|
|
|
letter-spacing: 0.01em;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.hero-cta:hover {
|
|
|
|
|
|
background: var(--primary-d);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-04-26 18:20:54 +02:00
|
|
|
|
/* ── Sections ────────────────────────── */
|
|
|
|
|
|
.section {
|
2026-04-26 22:39:45 +02:00
|
|
|
|
padding: 3.5rem 1.5rem;
|
|
|
|
|
|
border-bottom: 1px solid var(--gray-20);
|
2026-04-26 18:20:54 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.section-inner {
|
2026-04-26 22:39:45 +02:00
|
|
|
|
max-width: 860px;
|
2026-04-26 18:20:54 +02:00
|
|
|
|
margin: 0 auto;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.section:nth-child(odd) {
|
2026-04-26 22:34:11 +02:00
|
|
|
|
background: var(--white);
|
2026-04-26 18:20:54 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.section:nth-child(even) {
|
2026-04-26 22:39:45 +02:00
|
|
|
|
background: var(--gray-10);
|
2026-04-26 18:20:54 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.section h2 {
|
2026-04-26 22:39:45 +02:00
|
|
|
|
font-size: 1.5rem;
|
2026-04-26 18:20:54 +02:00
|
|
|
|
font-weight: 700;
|
|
|
|
|
|
margin-bottom: 1.25rem;
|
2026-04-26 22:39:45 +02:00
|
|
|
|
color: var(--dark);
|
|
|
|
|
|
line-height: 1.2;
|
|
|
|
|
|
letter-spacing: -0.01em;
|
2026-04-26 22:34:11 +02:00
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
2026-04-26 22:39:45 +02:00
|
|
|
|
gap: 0.75rem;
|
2026-04-26 22:34:11 +02:00
|
|
|
|
flex-wrap: wrap;
|
2026-04-26 18:20:54 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.section p {
|
|
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
|
|
font-size: 0.975rem;
|
2026-04-26 22:39:45 +02:00
|
|
|
|
color: var(--text);
|
2026-04-26 18:20:54 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* ── Problem list ────────────────────── */
|
|
|
|
|
|
.problem-list {
|
|
|
|
|
|
list-style: none;
|
2026-04-26 22:39:45 +02:00
|
|
|
|
margin: 1.25rem 0 0;
|
|
|
|
|
|
border: 1px solid var(--gray-20);
|
|
|
|
|
|
background: var(--white);
|
2026-04-26 18:20:54 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.problem-list li {
|
2026-04-26 22:39:45 +02:00
|
|
|
|
padding: 1rem 1rem 1rem 3.25rem;
|
2026-04-26 18:20:54 +02:00
|
|
|
|
position: relative;
|
2026-04-26 22:39:45 +02:00
|
|
|
|
border-bottom: 1px solid var(--gray-20);
|
2026-04-26 18:20:54 +02:00
|
|
|
|
font-size: 0.95rem;
|
2026-04-26 22:39:45 +02:00
|
|
|
|
color: var(--text);
|
2026-04-26 18:20:54 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.problem-list li:last-child {
|
|
|
|
|
|
border-bottom: none;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.problem-list li::before {
|
2026-04-26 22:39:45 +02:00
|
|
|
|
content: "—";
|
2026-04-26 18:20:54 +02:00
|
|
|
|
position: absolute;
|
2026-04-26 22:34:11 +02:00
|
|
|
|
left: 1rem;
|
2026-04-26 22:39:45 +02:00
|
|
|
|
top: 1rem;
|
2026-04-26 22:34:11 +02:00
|
|
|
|
color: var(--red);
|
|
|
|
|
|
font-family: var(--mono);
|
2026-04-26 22:39:45 +02:00
|
|
|
|
font-weight: 500;
|
2026-04-26 18:20:54 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.problem-list li strong {
|
2026-04-26 22:39:45 +02:00
|
|
|
|
color: var(--dark);
|
2026-04-26 22:34:11 +02:00
|
|
|
|
font-family: var(--mono);
|
2026-04-26 22:39:45 +02:00
|
|
|
|
font-size: 0.82rem;
|
2026-04-26 22:34:11 +02:00
|
|
|
|
font-weight: 500;
|
2026-04-26 22:39:45 +02:00
|
|
|
|
display: block;
|
|
|
|
|
|
margin-bottom: 0.2rem;
|
2026-04-26 18:20:54 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* ── Target grid ─────────────────────── */
|
|
|
|
|
|
.target-grid {
|
|
|
|
|
|
display: grid;
|
|
|
|
|
|
grid-template-columns: 1fr 1fr;
|
2026-04-26 23:30:48 +02:00
|
|
|
|
gap: 0;
|
|
|
|
|
|
margin-top: 2rem;
|
|
|
|
|
|
border: 1px solid var(--border);
|
2026-04-26 18:20:54 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@media (max-width: 580px) {
|
2026-04-26 23:30:48 +02:00
|
|
|
|
.target-grid {
|
|
|
|
|
|
grid-template-columns: 1fr;
|
|
|
|
|
|
}
|
|
|
|
|
|
.target-box + .target-box {
|
|
|
|
|
|
border-left: none;
|
|
|
|
|
|
border-top: 1px solid var(--border);
|
|
|
|
|
|
}
|
2026-04-26 18:20:54 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.target-box {
|
2026-04-26 23:30:48 +02:00
|
|
|
|
padding: 1.75rem 2rem;
|
2026-04-26 22:34:11 +02:00
|
|
|
|
background: var(--white);
|
2026-04-26 18:20:54 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-04-26 23:30:48 +02:00
|
|
|
|
.target-box + .target-box {
|
|
|
|
|
|
border-left: 1px solid var(--border);
|
2026-04-26 18:20:54 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.target-box h3 {
|
2026-04-26 22:39:45 +02:00
|
|
|
|
font-size: 0.7rem;
|
|
|
|
|
|
font-weight: 600;
|
2026-04-26 18:20:54 +02:00
|
|
|
|
text-transform: uppercase;
|
2026-04-26 22:39:45 +02:00
|
|
|
|
letter-spacing: 0.12em;
|
2026-04-26 23:30:48 +02:00
|
|
|
|
margin-bottom: 1.25rem;
|
2026-04-26 22:34:11 +02:00
|
|
|
|
font-family: var(--mono);
|
2026-04-26 23:30:48 +02:00
|
|
|
|
color: var(--muted);
|
2026-04-26 18:20:54 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.target-box ul {
|
|
|
|
|
|
list-style: none;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.target-box ul li {
|
2026-04-26 23:30:48 +02:00
|
|
|
|
padding: 0.55rem 0 0.55rem 1.5rem;
|
2026-04-26 22:34:11 +02:00
|
|
|
|
font-size: 0.9rem;
|
2026-04-26 22:39:45 +02:00
|
|
|
|
color: var(--text);
|
2026-04-26 18:20:54 +02:00
|
|
|
|
position: relative;
|
2026-04-26 22:39:45 +02:00
|
|
|
|
line-height: 1.5;
|
2026-04-26 23:30:48 +02:00
|
|
|
|
border-bottom: 1px solid var(--border);
|
2026-04-26 18:20:54 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-04-26 23:30:48 +02:00
|
|
|
|
.target-box ul li:last-child {
|
|
|
|
|
|
border-bottom: none;
|
2026-04-26 18:20:54 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.target-box.is-for ul li::before {
|
|
|
|
|
|
content: "✓";
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
left: 0;
|
2026-04-26 23:30:48 +02:00
|
|
|
|
color: var(--primary);
|
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
|
top: 0.55rem;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.target-box.not-for ul li::before {
|
|
|
|
|
|
content: "—";
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
left: 0;
|
|
|
|
|
|
color: var(--muted);
|
|
|
|
|
|
top: 0.55rem;
|
2026-04-26 18:20:54 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* ── Idea list ───────────────────────── */
|
|
|
|
|
|
.idea-items {
|
|
|
|
|
|
list-style: none;
|
2026-04-26 22:39:45 +02:00
|
|
|
|
margin-top: 1.25rem;
|
|
|
|
|
|
border: 1px solid var(--gray-20);
|
|
|
|
|
|
background: var(--white);
|
2026-04-26 18:20:54 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.idea-items li {
|
2026-04-26 22:39:45 +02:00
|
|
|
|
padding: 0.9rem 1rem 0.9rem 2.75rem;
|
2026-04-26 18:20:54 +02:00
|
|
|
|
position: relative;
|
2026-04-26 22:39:45 +02:00
|
|
|
|
border-bottom: 1px solid var(--gray-20);
|
2026-04-26 18:20:54 +02:00
|
|
|
|
font-size: 0.95rem;
|
2026-04-26 22:39:45 +02:00
|
|
|
|
color: var(--text);
|
2026-04-26 18:20:54 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.idea-items li:last-child {
|
|
|
|
|
|
border-bottom: none;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.idea-items li::before {
|
2026-04-26 22:34:11 +02:00
|
|
|
|
content: "→";
|
2026-04-26 18:20:54 +02:00
|
|
|
|
position: absolute;
|
2026-04-26 22:34:11 +02:00
|
|
|
|
left: 1rem;
|
2026-04-26 22:39:45 +02:00
|
|
|
|
top: 0.9rem;
|
|
|
|
|
|
color: var(--primary);
|
2026-04-26 22:34:11 +02:00
|
|
|
|
font-family: var(--mono);
|
|
|
|
|
|
font-size: 0.85rem;
|
2026-04-26 18:20:54 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.status-badge {
|
|
|
|
|
|
display: inline-block;
|
2026-04-26 22:39:45 +02:00
|
|
|
|
background: var(--primary-bg);
|
|
|
|
|
|
color: var(--primary);
|
|
|
|
|
|
border: 1px solid #B0C9FF;
|
|
|
|
|
|
padding: 0.15rem 0.55rem;
|
2026-04-26 22:34:11 +02:00
|
|
|
|
font-size: 0.65rem;
|
2026-04-26 22:39:45 +02:00
|
|
|
|
font-weight: 600;
|
2026-04-26 18:20:54 +02:00
|
|
|
|
text-transform: uppercase;
|
2026-04-26 22:34:11 +02:00
|
|
|
|
letter-spacing: 0.08em;
|
|
|
|
|
|
font-family: var(--mono);
|
2026-04-26 18:20:54 +02:00
|
|
|
|
vertical-align: middle;
|
|
|
|
|
|
position: relative;
|
2026-04-26 22:39:45 +02:00
|
|
|
|
top: -2px;
|
2026-04-26 18:20:54 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* ── Not-list ────────────────────────── */
|
|
|
|
|
|
.not-list {
|
|
|
|
|
|
list-style: none;
|
2026-04-26 22:39:45 +02:00
|
|
|
|
margin-top: 1.25rem;
|
2026-04-26 18:20:54 +02:00
|
|
|
|
display: grid;
|
|
|
|
|
|
grid-template-columns: 1fr 1fr;
|
2026-04-26 22:34:11 +02:00
|
|
|
|
gap: 0.5rem;
|
2026-04-26 18:20:54 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@media (max-width: 480px) {
|
2026-04-26 22:39:45 +02:00
|
|
|
|
.not-list { grid-template-columns: 1fr; }
|
2026-04-26 18:20:54 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.not-list li {
|
2026-04-26 22:34:11 +02:00
|
|
|
|
background: var(--white);
|
2026-04-26 22:39:45 +02:00
|
|
|
|
border: 1px solid var(--gray-20);
|
|
|
|
|
|
padding: 0.65rem 1rem;
|
|
|
|
|
|
color: var(--muted);
|
2026-04-26 18:20:54 +02:00
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
2026-04-26 22:39:45 +02:00
|
|
|
|
gap: 0.6rem;
|
2026-04-26 22:34:11 +02:00
|
|
|
|
font-family: var(--mono);
|
|
|
|
|
|
font-size: 0.82rem;
|
2026-04-26 18:20:54 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.not-list li::before {
|
2026-04-26 22:34:11 +02:00
|
|
|
|
content: "–";
|
2026-04-26 22:39:45 +02:00
|
|
|
|
color: var(--muted);
|
2026-04-26 18:20:54 +02:00
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* ── Signup form ─────────────────────── */
|
|
|
|
|
|
.form-section {
|
2026-04-26 22:39:45 +02:00
|
|
|
|
background: var(--white) !important;
|
|
|
|
|
|
border-top: 2px solid var(--primary);
|
2026-04-26 18:20:54 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.form-section .lead {
|
2026-04-26 22:39:45 +02:00
|
|
|
|
color: var(--dark) !important;
|
2026-04-26 18:20:54 +02:00
|
|
|
|
margin-bottom: 0.5rem;
|
2026-04-26 22:39:45 +02:00
|
|
|
|
font-size: 1.05rem !important;
|
|
|
|
|
|
font-weight: 600;
|
2026-04-26 18:20:54 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.form-section .disclaimer {
|
2026-04-26 22:39:45 +02:00
|
|
|
|
color: var(--muted) !important;
|
2026-04-26 22:34:11 +02:00
|
|
|
|
font-size: 0.875rem !important;
|
2026-04-26 22:39:45 +02:00
|
|
|
|
margin-bottom: 2rem;
|
2026-04-26 22:34:11 +02:00
|
|
|
|
line-height: 1.6;
|
2026-04-26 22:39:45 +02:00
|
|
|
|
border-left: 3px solid var(--gray-20);
|
|
|
|
|
|
padding-left: 1rem;
|
2026-04-26 18:20:54 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-04-26 23:12:10 +02:00
|
|
|
|
.form-section .founding-note {
|
|
|
|
|
|
color: var(--dark) !important;
|
|
|
|
|
|
font-size: 0.9rem !important;
|
|
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
|
|
background: var(--primary-bg);
|
|
|
|
|
|
border-left: 3px solid var(--primary);
|
|
|
|
|
|
padding: 0.75rem 1rem;
|
|
|
|
|
|
line-height: 1.6;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-04-26 18:20:54 +02:00
|
|
|
|
.signup-form {
|
2026-04-26 22:39:45 +02:00
|
|
|
|
margin-top: 1.5rem;
|
2026-04-26 18:20:54 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.form-group {
|
2026-04-26 22:39:45 +02:00
|
|
|
|
margin-bottom: 1.5rem;
|
2026-04-26 18:20:54 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.form-group label {
|
|
|
|
|
|
display: block;
|
|
|
|
|
|
font-size: 0.875rem;
|
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
|
margin-bottom: 0.4rem;
|
2026-04-26 22:39:45 +02:00
|
|
|
|
color: var(--dark);
|
2026-04-26 18:20:54 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.form-group .hint {
|
|
|
|
|
|
display: block;
|
|
|
|
|
|
font-size: 0.78rem;
|
2026-04-26 22:39:45 +02:00
|
|
|
|
color: var(--muted);
|
2026-04-26 18:20:54 +02:00
|
|
|
|
font-weight: 400;
|
2026-04-26 22:39:45 +02:00
|
|
|
|
margin-top: 0.3rem;
|
2026-04-26 22:34:11 +02:00
|
|
|
|
font-family: var(--mono);
|
2026-04-26 18:20:54 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.form-group input[type="text"],
|
|
|
|
|
|
.form-group input[type="email"],
|
|
|
|
|
|
.form-group input[type="number"],
|
|
|
|
|
|
.form-group textarea {
|
|
|
|
|
|
width: 100%;
|
2026-04-26 22:39:45 +02:00
|
|
|
|
padding: 0.625rem 0.875rem;
|
|
|
|
|
|
background: var(--white);
|
|
|
|
|
|
border: 1px solid var(--gray-20);
|
|
|
|
|
|
border-bottom: 2px solid var(--muted);
|
|
|
|
|
|
border-radius: 0;
|
|
|
|
|
|
color: var(--dark);
|
2026-04-26 22:34:11 +02:00
|
|
|
|
font-size: 0.975rem;
|
2026-04-26 18:20:54 +02:00
|
|
|
|
font-family: inherit;
|
2026-04-26 22:39:45 +02:00
|
|
|
|
transition: border-color 0.15s;
|
2026-04-26 18:20:54 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.form-group input:focus,
|
|
|
|
|
|
.form-group textarea:focus {
|
|
|
|
|
|
outline: none;
|
2026-04-26 22:39:45 +02:00
|
|
|
|
border-color: var(--primary);
|
|
|
|
|
|
border-bottom-color: var(--primary);
|
2026-04-26 18:20:54 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.form-group textarea {
|
2026-04-26 22:39:45 +02:00
|
|
|
|
min-height: 100px;
|
2026-04-26 18:20:54 +02:00
|
|
|
|
resize: vertical;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.radio-group {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
gap: 1.5rem;
|
|
|
|
|
|
margin-top: 0.3rem;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.radio-group label {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
gap: 0.4rem;
|
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
|
cursor: pointer;
|
2026-04-26 22:39:45 +02:00
|
|
|
|
color: var(--text);
|
2026-04-26 22:34:11 +02:00
|
|
|
|
font-size: 0.975rem;
|
2026-04-26 18:20:54 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.radio-group input[type="radio"] {
|
|
|
|
|
|
width: 1rem;
|
|
|
|
|
|
height: 1rem;
|
2026-04-26 22:39:45 +02:00
|
|
|
|
accent-color: var(--primary);
|
2026-04-26 18:20:54 +02:00
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.error-msg {
|
2026-04-26 22:39:45 +02:00
|
|
|
|
background: var(--red-bg);
|
|
|
|
|
|
border: 1px solid var(--red-border);
|
|
|
|
|
|
border-left: 3px solid var(--red);
|
|
|
|
|
|
color: var(--red);
|
|
|
|
|
|
padding: 0.875rem 1rem;
|
|
|
|
|
|
margin-bottom: 1.5rem;
|
2026-04-26 18:20:54 +02:00
|
|
|
|
font-size: 0.9rem;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.submit-btn {
|
2026-04-26 22:39:45 +02:00
|
|
|
|
background: var(--primary);
|
|
|
|
|
|
color: var(--white);
|
2026-04-26 18:20:54 +02:00
|
|
|
|
border: none;
|
|
|
|
|
|
padding: 0.875rem 2rem;
|
2026-04-26 22:39:45 +02:00
|
|
|
|
font-size: 0.975rem;
|
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
|
border-radius: 0;
|
2026-04-26 18:20:54 +02:00
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
transition: background 0.15s;
|
|
|
|
|
|
font-family: inherit;
|
2026-04-26 22:34:11 +02:00
|
|
|
|
letter-spacing: 0.01em;
|
2026-04-26 18:20:54 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.submit-btn:hover {
|
2026-04-26 22:39:45 +02:00
|
|
|
|
background: var(--primary-d);
|
2026-04-26 18:20:54 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* ── Footer ──────────────────────────── */
|
|
|
|
|
|
footer {
|
2026-04-26 22:39:45 +02:00
|
|
|
|
background: var(--gray-10);
|
|
|
|
|
|
border-top: 1px solid var(--gray-20);
|
|
|
|
|
|
padding: 2.5rem 1.5rem;
|
2026-04-26 18:20:54 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.footer-inner {
|
2026-04-26 22:39:45 +02:00
|
|
|
|
max-width: 860px;
|
2026-04-26 18:20:54 +02:00
|
|
|
|
margin: 0 auto;
|
|
|
|
|
|
text-align: center;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.footer-inner p {
|
2026-04-26 22:39:45 +02:00
|
|
|
|
font-size: 0.875rem;
|
|
|
|
|
|
color: var(--muted);
|
2026-04-26 18:20:54 +02:00
|
|
|
|
margin-bottom: 0.5rem;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-04-26 22:34:11 +02:00
|
|
|
|
.footer-inner strong {
|
2026-04-26 22:39:45 +02:00
|
|
|
|
color: var(--dark);
|
2026-04-26 22:34:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-04-26 18:20:54 +02:00
|
|
|
|
.footer-inner a {
|
2026-04-26 22:39:45 +02:00
|
|
|
|
color: var(--primary);
|
2026-04-26 18:20:54 +02:00
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.footer-inner a:hover {
|
|
|
|
|
|
text-decoration: underline;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.footer-small {
|
|
|
|
|
|
font-size: 0.75rem !important;
|
2026-04-26 22:39:45 +02:00
|
|
|
|
color: var(--gray-20) !important;
|
2026-04-26 18:20:54 +02:00
|
|
|
|
margin-top: 0.25rem;
|
2026-04-26 22:34:11 +02:00
|
|
|
|
font-family: var(--mono);
|
2026-04-26 18:20:54 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* ── Tak page ────────────────────────── */
|
|
|
|
|
|
.tak-section {
|
|
|
|
|
|
min-height: 65vh;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
padding: 3rem 1.5rem;
|
2026-04-26 22:39:45 +02:00
|
|
|
|
background: var(--gray-10);
|
2026-04-26 18:20:54 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.tak-card {
|
|
|
|
|
|
max-width: 520px;
|
|
|
|
|
|
text-align: center;
|
2026-04-26 22:34:11 +02:00
|
|
|
|
background: var(--white);
|
2026-04-26 22:39:45 +02:00
|
|
|
|
border: 1px solid var(--gray-20);
|
|
|
|
|
|
border-top: 3px solid var(--primary);
|
|
|
|
|
|
padding: 3rem 2.5rem;
|
2026-04-26 18:20:54 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.tak-icon {
|
2026-04-26 22:34:11 +02:00
|
|
|
|
font-size: 2rem;
|
2026-04-26 18:20:54 +02:00
|
|
|
|
margin-bottom: 1rem;
|
2026-04-26 22:39:45 +02:00
|
|
|
|
color: var(--primary);
|
2026-04-26 22:34:11 +02:00
|
|
|
|
font-family: var(--mono);
|
|
|
|
|
|
font-weight: 500;
|
2026-04-26 18:20:54 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.tak-card h1 {
|
2026-04-26 22:34:11 +02:00
|
|
|
|
font-size: 1.75rem;
|
2026-04-26 18:20:54 +02:00
|
|
|
|
font-weight: 700;
|
|
|
|
|
|
margin-bottom: 0.75rem;
|
2026-04-26 22:39:45 +02:00
|
|
|
|
color: var(--dark);
|
2026-04-26 18:20:54 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.tak-card p {
|
2026-04-26 22:39:45 +02:00
|
|
|
|
color: var(--text);
|
2026-04-26 18:20:54 +02:00
|
|
|
|
margin-bottom: 0.75rem;
|
2026-04-26 22:39:45 +02:00
|
|
|
|
font-size: 0.975rem;
|
2026-04-26 18:20:54 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.back-link {
|
|
|
|
|
|
display: inline-block;
|
|
|
|
|
|
margin-top: 1.25rem;
|
2026-04-26 22:39:45 +02:00
|
|
|
|
color: var(--primary);
|
2026-04-26 18:20:54 +02:00
|
|
|
|
text-decoration: none;
|
2026-04-26 22:34:11 +02:00
|
|
|
|
font-weight: 600;
|
|
|
|
|
|
font-family: var(--mono);
|
|
|
|
|
|
font-size: 0.85rem;
|
2026-04-26 18:20:54 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.back-link:hover {
|
|
|
|
|
|
text-decoration: underline;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-04-26 23:12:10 +02:00
|
|
|
|
.tak-contact {
|
|
|
|
|
|
font-size: 0.82rem;
|
|
|
|
|
|
color: var(--muted);
|
|
|
|
|
|
margin-top: 1.25rem;
|
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.tak-contact a {
|
|
|
|
|
|
color: var(--primary);
|
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.tak-contact a:hover {
|
|
|
|
|
|
text-decoration: underline;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* ── Share box (tak page) ────────────── */
|
|
|
|
|
|
.share-box {
|
|
|
|
|
|
margin: 2rem 0 1.5rem;
|
|
|
|
|
|
background: var(--gray-10);
|
|
|
|
|
|
border: 1px solid var(--gray-20);
|
|
|
|
|
|
padding: 1.5rem;
|
|
|
|
|
|
text-align: left;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.share-heading {
|
|
|
|
|
|
font-size: 0.9rem !important;
|
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
|
color: var(--dark) !important;
|
|
|
|
|
|
margin-bottom: 0.4rem !important;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.share-sub {
|
|
|
|
|
|
font-size: 0.82rem !important;
|
|
|
|
|
|
color: var(--muted) !important;
|
|
|
|
|
|
margin-bottom: 1rem !important;
|
|
|
|
|
|
line-height: 1.55;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.share-text {
|
|
|
|
|
|
background: var(--white);
|
|
|
|
|
|
border: 1px solid var(--gray-20);
|
|
|
|
|
|
padding: 0.875rem 1rem;
|
|
|
|
|
|
font-size: 0.82rem;
|
|
|
|
|
|
color: var(--text);
|
|
|
|
|
|
line-height: 1.55;
|
|
|
|
|
|
font-family: var(--mono);
|
|
|
|
|
|
margin-bottom: 0.75rem;
|
|
|
|
|
|
word-break: break-word;
|
|
|
|
|
|
user-select: all;
|
|
|
|
|
|
cursor: text;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.copy-btn {
|
|
|
|
|
|
background: var(--dark);
|
|
|
|
|
|
color: var(--white);
|
|
|
|
|
|
border: none;
|
|
|
|
|
|
padding: 0.5rem 1.25rem;
|
|
|
|
|
|
font-size: 0.82rem;
|
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
|
border-radius: 0;
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
font-family: inherit;
|
|
|
|
|
|
transition: background 0.15s;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.copy-btn:hover {
|
|
|
|
|
|
background: #333;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.copy-confirm {
|
|
|
|
|
|
display: none;
|
|
|
|
|
|
margin-left: 0.75rem;
|
|
|
|
|
|
font-size: 0.82rem;
|
|
|
|
|
|
color: var(--green);
|
|
|
|
|
|
font-family: var(--mono);
|
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-04-26 18:20:54 +02:00
|
|
|
|
/* ── Admin ───────────────────────────── */
|
|
|
|
|
|
.admin-section {
|
|
|
|
|
|
padding: 2rem 1.5rem;
|
|
|
|
|
|
max-width: 1100px;
|
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.admin-section h1 {
|
2026-04-26 22:39:45 +02:00
|
|
|
|
font-size: 1.5rem;
|
2026-04-26 18:20:54 +02:00
|
|
|
|
font-weight: 700;
|
|
|
|
|
|
margin-bottom: 0.4rem;
|
2026-04-26 22:39:45 +02:00
|
|
|
|
color: var(--dark);
|
2026-04-26 18:20:54 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.admin-meta {
|
2026-04-26 22:39:45 +02:00
|
|
|
|
color: var(--muted);
|
2026-04-26 18:20:54 +02:00
|
|
|
|
font-size: 0.875rem;
|
|
|
|
|
|
margin-bottom: 1.5rem;
|
2026-04-26 22:34:11 +02:00
|
|
|
|
font-family: var(--mono);
|
2026-04-26 18:20:54 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.table-wrapper {
|
|
|
|
|
|
overflow-x: auto;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.signups-table {
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
border-collapse: collapse;
|
2026-04-26 22:39:45 +02:00
|
|
|
|
font-size: 0.875rem;
|
2026-04-26 18:20:54 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.signups-table th {
|
2026-04-26 22:39:45 +02:00
|
|
|
|
background: var(--dark);
|
|
|
|
|
|
color: var(--white);
|
|
|
|
|
|
padding: 0.75rem 0.875rem;
|
2026-04-26 18:20:54 +02:00
|
|
|
|
text-align: left;
|
|
|
|
|
|
font-weight: 600;
|
2026-04-26 22:39:45 +02:00
|
|
|
|
border-bottom: 2px solid var(--primary);
|
2026-04-26 18:20:54 +02:00
|
|
|
|
white-space: nowrap;
|
2026-04-26 22:34:11 +02:00
|
|
|
|
font-family: var(--mono);
|
2026-04-26 22:39:45 +02:00
|
|
|
|
font-size: 0.75rem;
|
|
|
|
|
|
letter-spacing: 0.06em;
|
2026-04-26 22:34:11 +02:00
|
|
|
|
text-transform: uppercase;
|
2026-04-26 18:20:54 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.signups-table td {
|
2026-04-26 22:39:45 +02:00
|
|
|
|
padding: 0.75rem 0.875rem;
|
|
|
|
|
|
border-bottom: 1px solid var(--gray-20);
|
2026-04-26 18:20:54 +02:00
|
|
|
|
vertical-align: top;
|
2026-04-26 22:39:45 +02:00
|
|
|
|
color: var(--text);
|
2026-04-26 18:20:54 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.signups-table tr:hover td {
|
2026-04-26 22:39:45 +02:00
|
|
|
|
background: var(--gray-10);
|
2026-04-26 18:20:54 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.badge-ja {
|
2026-04-26 22:39:45 +02:00
|
|
|
|
background: var(--green-bg);
|
|
|
|
|
|
color: var(--green);
|
|
|
|
|
|
padding: 0.15rem 0.5rem;
|
|
|
|
|
|
font-size: 0.7rem;
|
|
|
|
|
|
font-weight: 600;
|
2026-04-26 22:34:11 +02:00
|
|
|
|
font-family: var(--mono);
|
|
|
|
|
|
text-transform: uppercase;
|
2026-04-26 22:39:45 +02:00
|
|
|
|
border: 1px solid var(--green-bdr);
|
2026-04-26 18:20:54 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.badge-nej {
|
2026-04-26 22:34:11 +02:00
|
|
|
|
background: var(--red-bg);
|
|
|
|
|
|
color: var(--red);
|
2026-04-26 22:39:45 +02:00
|
|
|
|
padding: 0.15rem 0.5rem;
|
|
|
|
|
|
font-size: 0.7rem;
|
|
|
|
|
|
font-weight: 600;
|
2026-04-26 22:34:11 +02:00
|
|
|
|
font-family: var(--mono);
|
|
|
|
|
|
text-transform: uppercase;
|
2026-04-26 22:39:45 +02:00
|
|
|
|
border: 1px solid var(--red-border);
|
2026-04-26 18:20:54 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.empty-state {
|
|
|
|
|
|
text-align: center;
|
|
|
|
|
|
padding: 3rem;
|
2026-04-26 22:39:45 +02:00
|
|
|
|
color: var(--muted);
|
2026-04-26 22:34:11 +02:00
|
|
|
|
font-family: var(--mono);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* ── Mobile ──────────────────────────── */
|
|
|
|
|
|
@media (max-width: 640px) {
|
|
|
|
|
|
.hero {
|
2026-04-26 22:39:45 +02:00
|
|
|
|
padding: 3.5rem 1.25rem 3rem;
|
2026-04-26 22:34:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
.section {
|
2026-04-26 22:39:45 +02:00
|
|
|
|
padding: 2.5rem 1.25rem;
|
2026-04-26 22:34:11 +02:00
|
|
|
|
}
|
2026-04-26 18:20:54 +02:00
|
|
|
|
}
|
Rewrite copy (positive tone) + redesign target grid
- All section copy rewritten: solution-first framing, no 'klagesang'
- Hero: 'Selvhosternes registrar. Bygget af jer. Kostpris.'
- Section order: target identity first, then what we build, then background
- Rename 'Problemet' → 'Baggrunden', 'Idéen' → 'Hvad vi bygger'
- Remove all victim language (tvinger, mod din vilje, ingen teknisk gevinst)
- Target grid: drop colored backgrounds/borders, clean bordered grid
with row separators, blue checkmarks, muted dashes — no template feel
- Fix inline color styles → CSS classes (.required, .optional)
- Footer: slight copy improvement
2026-04-26 23:27:49 +02:00
|
|
|
|
|
|
|
|
|
|
/* ── Form helpers ──────────────────── */
|
|
|
|
|
|
.required {
|
|
|
|
|
|
color: var(--red);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.optional {
|
|
|
|
|
|
color: var(--muted);
|
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
|
}
|
2026-04-26 23:30:48 +02:00
|
|
|
|
|
|
|
|
|
|
/* ── Timeline ─────────────────────── */
|
|
|
|
|
|
.timeline {
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
margin-top: 2rem;
|
|
|
|
|
|
padding-left: 2.5rem;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.timeline::before {
|
|
|
|
|
|
content: '';
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
left: 6px;
|
|
|
|
|
|
top: 10px;
|
|
|
|
|
|
bottom: 10px;
|
|
|
|
|
|
width: 2px;
|
|
|
|
|
|
background: var(--border);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.timeline-item {
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
padding-bottom: 2.25rem;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.timeline-item:last-child {
|
|
|
|
|
|
padding-bottom: 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.timeline-marker {
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
left: -2.5rem;
|
|
|
|
|
|
top: 4px;
|
|
|
|
|
|
width: 14px;
|
|
|
|
|
|
height: 14px;
|
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
|
border: 2px solid var(--border);
|
|
|
|
|
|
background: var(--white);
|
|
|
|
|
|
z-index: 1;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.timeline-marker.is-now {
|
|
|
|
|
|
background: var(--primary);
|
|
|
|
|
|
border-color: var(--primary);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.timeline-marker.is-soon {
|
|
|
|
|
|
background: var(--white);
|
|
|
|
|
|
border-color: var(--primary);
|
|
|
|
|
|
box-shadow: 0 0 0 4px var(--primary-bg);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.timeline-marker.is-future {
|
|
|
|
|
|
background: var(--white);
|
|
|
|
|
|
border-color: var(--border);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.timeline-date {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
gap: 0.5rem;
|
|
|
|
|
|
font-size: 0.72rem;
|
|
|
|
|
|
font-family: var(--mono);
|
|
|
|
|
|
color: var(--muted);
|
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
|
letter-spacing: 0.08em;
|
|
|
|
|
|
margin-bottom: 0.3rem;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.timeline-badge {
|
|
|
|
|
|
display: inline-block;
|
|
|
|
|
|
font-size: 0.62rem;
|
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
|
letter-spacing: 0.06em;
|
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
|
color: var(--red);
|
|
|
|
|
|
background: var(--red-bg);
|
|
|
|
|
|
border: 1px solid var(--red-border);
|
|
|
|
|
|
padding: 0.05rem 0.4rem;
|
|
|
|
|
|
border-radius: 2px;
|
|
|
|
|
|
font-family: var(--mono);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.timeline-body h3 {
|
|
|
|
|
|
font-size: 1rem;
|
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
|
color: var(--dark);
|
|
|
|
|
|
margin-bottom: 0.35rem;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.timeline-body p {
|
|
|
|
|
|
font-size: 0.9rem;
|
|
|
|
|
|
color: var(--text);
|
|
|
|
|
|
line-height: 1.65;
|
|
|
|
|
|
margin: 0;
|
|
|
|
|
|
max-width: 56ch;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* ── FAQ ──────────────────────────── */
|
|
|
|
|
|
.faq {
|
|
|
|
|
|
margin-top: 1.5rem;
|
|
|
|
|
|
border: 1px solid var(--border);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.faq-item {
|
|
|
|
|
|
border-bottom: 1px solid var(--border);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.faq-item:last-child {
|
|
|
|
|
|
border-bottom: none;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.faq-item summary {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
padding: 1.1rem 1.5rem;
|
|
|
|
|
|
font-size: 0.95rem;
|
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
|
color: var(--dark);
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
list-style: none;
|
|
|
|
|
|
user-select: none;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.faq-item summary::-webkit-details-marker {
|
|
|
|
|
|
display: none;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.faq-item summary::after {
|
|
|
|
|
|
content: '+';
|
|
|
|
|
|
font-size: 1.2rem;
|
|
|
|
|
|
font-weight: 300;
|
|
|
|
|
|
color: var(--muted);
|
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
|
margin-left: 1rem;
|
|
|
|
|
|
line-height: 1;
|
|
|
|
|
|
transition: transform 0.15s ease;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.faq-item[open] summary::after {
|
|
|
|
|
|
content: '−';
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.faq-item summary:hover {
|
|
|
|
|
|
background: var(--section-alt);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.faq-answer {
|
|
|
|
|
|
padding: 0 1.5rem 1.25rem;
|
|
|
|
|
|
border-top: 1px solid var(--border);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.faq-answer p {
|
|
|
|
|
|
margin: 0;
|
|
|
|
|
|
font-size: 0.9rem;
|
|
|
|
|
|
color: var(--text);
|
|
|
|
|
|
line-height: 1.7;
|
|
|
|
|
|
padding-top: 1rem;
|
|
|
|
|
|
}
|
2026-04-26 23:40:49 +02:00
|
|
|
|
|
|
|
|
|
|
/* ── Compare grid (forening vs. firma) ─────────────────────── */
|
|
|
|
|
|
.compare-grid {
|
|
|
|
|
|
display: grid;
|
|
|
|
|
|
grid-template-columns: 1fr 1fr;
|
|
|
|
|
|
gap: 1.5rem;
|
|
|
|
|
|
margin: 1.5rem 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@media (max-width: 640px) {
|
|
|
|
|
|
.compare-grid { grid-template-columns: 1fr; }
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.compare-col {
|
|
|
|
|
|
border: 1px solid var(--border);
|
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
|
padding: 1.25rem 1.5rem;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.compare-col h3 {
|
|
|
|
|
|
font-size: 0.85rem;
|
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
|
letter-spacing: 0.05em;
|
|
|
|
|
|
color: var(--muted);
|
|
|
|
|
|
margin: 0 0 1rem 0;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
gap: 0.5rem;
|
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.compare-col.is-preferred {
|
|
|
|
|
|
border-color: var(--primary);
|
|
|
|
|
|
background: var(--primary-bg);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.compare-col.is-preferred h3 {
|
|
|
|
|
|
color: var(--primary);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.preferred-badge {
|
|
|
|
|
|
font-size: 0.7rem;
|
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
|
background: var(--primary);
|
|
|
|
|
|
color: #fff;
|
|
|
|
|
|
padding: 0.15rem 0.5rem;
|
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
|
letter-spacing: 0.04em;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.compare-col ul {
|
|
|
|
|
|
list-style: none;
|
|
|
|
|
|
padding: 0;
|
|
|
|
|
|
margin: 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.compare-col ul li {
|
|
|
|
|
|
padding: 0.5rem 0;
|
|
|
|
|
|
font-size: 0.88rem;
|
|
|
|
|
|
line-height: 1.55;
|
|
|
|
|
|
border-bottom: 1px solid var(--border);
|
|
|
|
|
|
color: var(--text);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.compare-col ul li:last-child { border-bottom: none; }
|
|
|
|
|
|
|
|
|
|
|
|
.compare-col:not(.is-preferred) ul li::before {
|
|
|
|
|
|
content: '–';
|
|
|
|
|
|
color: var(--muted);
|
|
|
|
|
|
margin-right: 0.5rem;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.compare-col.is-preferred ul li::before {
|
|
|
|
|
|
content: '✓';
|
|
|
|
|
|
color: var(--primary);
|
|
|
|
|
|
margin-right: 0.5rem;
|
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
|
}
|