Compare commits
6 Commits
ec250edbbf
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
572a3f0276 | ||
|
|
e0167b44e1 | ||
| 1bb75ddb23 | |||
|
|
b8df82e383 | ||
|
|
8ba41f7e3c | ||
|
|
21b2cd7e88 |
64
main.go
64
main.go
@@ -14,6 +14,22 @@ import (
|
||||
|
||||
var templates = make(map[string]*template.Template)
|
||||
|
||||
// pageTitles maps each edition page to its SEO title.
|
||||
var pageTitles = map[string]string{
|
||||
"server": "Arcline Server — Hardened SOC / Production Host",
|
||||
"workstation": "Arcline Workstation — Security Analyst / Blue-Team Desktop",
|
||||
"cloud": "Arcline Cloud — Security-First Cloud Images",
|
||||
}
|
||||
|
||||
// mustParse parses a template set and fails fast at startup on any error.
|
||||
func mustParse(name string, files ...string) *template.Template {
|
||||
t, err := template.ParseFiles(files...)
|
||||
if err != nil {
|
||||
log.Fatalf("failed to parse %s template: %v", name, err)
|
||||
}
|
||||
return t
|
||||
}
|
||||
|
||||
// contextKey is used to pass per-request log extras from handlers to the logging middleware.
|
||||
type contextKey struct{}
|
||||
type logContext struct{ extra string }
|
||||
@@ -25,11 +41,23 @@ func main() {
|
||||
}
|
||||
|
||||
// Parse templates once at startup.
|
||||
index, err := template.ParseFiles("templates/base.html", "templates/index.html")
|
||||
if err != nil {
|
||||
log.Fatalf("failed to parse index template: %v", err)
|
||||
templates["index"] = mustParse("index",
|
||||
"templates/base.html",
|
||||
"templates/index.html",
|
||||
"templates/partials/nav.html",
|
||||
"templates/partials/footer.html",
|
||||
"templates/partials/waitlist_form.html",
|
||||
)
|
||||
|
||||
for _, name := range []string{"server", "workstation", "cloud"} {
|
||||
templates[name] = mustParse(name,
|
||||
"templates/base.html",
|
||||
"templates/"+name+".html",
|
||||
"templates/partials/nav.html",
|
||||
"templates/partials/footer.html",
|
||||
"templates/partials/waitlist_form.html",
|
||||
)
|
||||
}
|
||||
templates["index"] = index
|
||||
|
||||
waitlist, err := template.ParseFiles("templates/partials/waitlist_confirmation.html")
|
||||
if err != nil {
|
||||
@@ -45,6 +73,9 @@ func main() {
|
||||
|
||||
// Page routes
|
||||
mux.HandleFunc("/", handleIndex)
|
||||
mux.HandleFunc("/server", handlePage("server"))
|
||||
mux.HandleFunc("/workstation", handlePage("workstation"))
|
||||
mux.HandleFunc("/cloud", handlePage("cloud"))
|
||||
mux.HandleFunc("/healthz", handleHealthz)
|
||||
|
||||
// HTMX partial routes
|
||||
@@ -163,7 +194,9 @@ func handleIndex(w http.ResponseWriter, r *http.Request) {
|
||||
|
||||
w.Header().Set("Content-Type", "text/html; charset=utf-8")
|
||||
data := map[string]interface{}{
|
||||
"Title": "Arcline Project",
|
||||
"Title": "Arcline OS — Hardened Linux for Security Practitioners",
|
||||
"Active": "",
|
||||
"Edition": "server",
|
||||
}
|
||||
if err := templates["index"].ExecuteTemplate(w, "base", data); err != nil {
|
||||
log.Printf("render error: %v", err)
|
||||
@@ -171,6 +204,27 @@ func handleIndex(w http.ResponseWriter, r *http.Request) {
|
||||
}
|
||||
}
|
||||
|
||||
// handlePage renders one of the edition pages (server, workstation, cloud).
|
||||
func handlePage(page string) http.HandlerFunc {
|
||||
return func(w http.ResponseWriter, r *http.Request) {
|
||||
if r.URL.Path != "/"+page {
|
||||
http.NotFound(w, r)
|
||||
return
|
||||
}
|
||||
|
||||
w.Header().Set("Content-Type", "text/html; charset=utf-8")
|
||||
data := map[string]interface{}{
|
||||
"Title": pageTitles[page],
|
||||
"Active": page,
|
||||
"Edition": page,
|
||||
}
|
||||
if err := templates[page].ExecuteTemplate(w, "base", data); err != nil {
|
||||
log.Printf("render error: %v", err)
|
||||
http.Error(w, "Internal Server Error", http.StatusInternalServerError)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
func handleWaitlist(w http.ResponseWriter, r *http.Request) {
|
||||
if r.Method != http.MethodPost {
|
||||
http.Error(w, "Method Not Allowed", http.StatusMethodNotAllowed)
|
||||
|
||||
@@ -14,31 +14,34 @@
|
||||
/* ── Design Tokens ── */
|
||||
/* Dark mode is the default */
|
||||
:root {
|
||||
/* Colors */
|
||||
--color-bg: #0d1117;
|
||||
--color-bg-alt: #161b22;
|
||||
--color-bg-card: #161b22;
|
||||
--color-bg-card-hover: #1c2333;
|
||||
--color-bg-dark: #0b0c0e;
|
||||
/* Colors — tactical near-black, cool cast */
|
||||
--color-bg: #08090d;
|
||||
--color-bg-alt: #0d1016;
|
||||
--color-bg-card: #0f1219;
|
||||
--color-bg-card-hover: #151b26;
|
||||
--color-bg-dark: #05060a;
|
||||
|
||||
--color-border: #30363d;
|
||||
--color-border-hover: #484f58;
|
||||
--color-border-light: #21262d;
|
||||
--color-border: #202634;
|
||||
--color-border-hover: #2e3748;
|
||||
--color-border-light: #141923;
|
||||
|
||||
--color-text: #e6edf3;
|
||||
--color-text-soft: #8b949e;
|
||||
--color-text-faint: #6e7681;
|
||||
--color-text-inverse: #e6edf3;
|
||||
--color-text: #e8ecf2;
|
||||
--color-text-soft: #8b93a4;
|
||||
--color-text-faint: #5e6879;
|
||||
--color-text-inverse: #e8ecf2;
|
||||
|
||||
--color-accent: #0acf97;
|
||||
--color-accent-dim: hsl(162 88% 43%);
|
||||
--color-accent-bg: hsla(162 88% 43% / 0.10);
|
||||
--color-accent-border: hsla(162 88% 43% / 0.22);
|
||||
/* Amber / alert accent */
|
||||
--color-accent: #fbbf24;
|
||||
--color-accent-dim: #f59e0b;
|
||||
--color-accent-bg: hsla(48 97% 55% / 0.09);
|
||||
--color-accent-border: hsla(48 97% 55% / 0.26);
|
||||
|
||||
--color-cta-text: #0b0c0e;
|
||||
--color-cta-text: #191204;
|
||||
|
||||
--color-nav-bg: rgba(13, 17, 23, 0.92);
|
||||
--color-hero-gradient: linear-gradient(180deg, #0d1117 0%, #161b22 50%, #0d1117 100%);
|
||||
--color-nav-bg: rgba(8, 9, 13, 0.88);
|
||||
--color-hero-grid: hsla(223 30% 70% / 0.05);
|
||||
--color-hero-glow: hsla(48 97% 55% / 0.10);
|
||||
--color-hero-gradient: linear-gradient(180deg, #08090d 0%, #0d1016 55%, #08090d 100%);
|
||||
|
||||
/* Typography */
|
||||
--font-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
|
||||
@@ -50,15 +53,15 @@
|
||||
--pad-section: 80px;
|
||||
--pad-card: 28px;
|
||||
|
||||
/* Radii */
|
||||
--radius-sm: 6px;
|
||||
--radius-md: 10px;
|
||||
--radius-lg: 14px;
|
||||
/* Radii — sharp, tactical */
|
||||
--radius-sm: 3px;
|
||||
--radius-md: 6px;
|
||||
--radius-lg: 9px;
|
||||
|
||||
/* Shadows */
|
||||
--shadow-card: 0 1px 3px rgba(0,0,0,0.24), 0 1px 2px rgba(0,0,0,0.16);
|
||||
--shadow-hover: 0 4px 14px rgba(0,0,0,0.32), 0 2px 4px rgba(0,0,0,0.16);
|
||||
--shadow-nav: 0 1px 3px rgba(0,0,0,0.24);
|
||||
--shadow-card: 0 1px 2px rgba(0,0,0,0.45), 0 1px 3px rgba(0,0,0,0.3);
|
||||
--shadow-hover: 0 6px 18px rgba(0,0,0,0.55), 0 2px 6px rgba(0,0,0,0.35);
|
||||
--shadow-nav: 0 1px 2px rgba(0,0,0,0.5);
|
||||
|
||||
/* Transitions */
|
||||
--ease: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
||||
@@ -66,33 +69,35 @@
|
||||
|
||||
/* Light mode overrides */
|
||||
[data-theme="light"] {
|
||||
--color-bg: #ffffff;
|
||||
--color-bg-alt: #f5f6f8;
|
||||
--color-bg: #f6f7f9;
|
||||
--color-bg-alt: #ebeef2;
|
||||
--color-bg-card: #ffffff;
|
||||
--color-bg-card-hover: #f8f9fb;
|
||||
--color-bg-card-hover: #f3f5f8;
|
||||
|
||||
--color-border: #e2e4e8;
|
||||
--color-border-hover: #c8cad0;
|
||||
--color-border-light: #eeeff2;
|
||||
--color-border: #d8dce3;
|
||||
--color-border-hover: #b7bfca;
|
||||
--color-border-light: #e8eaee;
|
||||
|
||||
--color-text: #1a1c22;
|
||||
--color-text-soft: #4a4e58;
|
||||
--color-text-faint: #7c808a;
|
||||
--color-text: #171a21;
|
||||
--color-text-soft: #454d5b;
|
||||
--color-text-faint: #717b89;
|
||||
--color-text-inverse: #ffffff;
|
||||
|
||||
--color-accent: #0acf97;
|
||||
--color-accent-dim: hsl(162 88% 33%);
|
||||
--color-accent-bg: hsla(162 88% 43% / 0.07);
|
||||
--color-accent-border: hsla(162 88% 43% / 0.18);
|
||||
--color-accent: #b45309;
|
||||
--color-accent-dim: #92400e;
|
||||
--color-accent-bg: hsla(34 100% 37% / 0.08);
|
||||
--color-accent-border: hsla(34 100% 37% / 0.20);
|
||||
|
||||
--color-cta-text: #0d1117;
|
||||
--color-cta-text: #ffffff;
|
||||
|
||||
--color-nav-bg: rgba(255, 255, 255, 0.92);
|
||||
--color-hero-gradient: linear-gradient(180deg, #f8f9fb 0%, #ffffff 100%);
|
||||
--color-nav-bg: rgba(246, 247, 249, 0.9);
|
||||
--color-hero-grid: hsla(222 45% 28% / 0.05);
|
||||
--color-hero-glow: hsla(34 100% 37% / 0.07);
|
||||
--color-hero-gradient: linear-gradient(180deg, #f2f4f7 0%, #ffffff 100%);
|
||||
|
||||
--shadow-card: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
|
||||
--shadow-hover: 0 4px 14px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
|
||||
--shadow-nav: 0 1px 3px rgba(0,0,0,0.06);
|
||||
--shadow-card: 0 1px 2px rgba(23,31,45,0.05), 0 1px 3px rgba(23,31,45,0.04);
|
||||
--shadow-hover: 0 8px 22px rgba(23,31,45,0.10), 0 2px 6px rgba(23,31,45,0.06);
|
||||
--shadow-nav: 0 1px 2px rgba(23,31,45,0.05);
|
||||
}
|
||||
|
||||
/* ── Base ── */
|
||||
@@ -110,6 +115,17 @@ body {
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
/* HUD polish: amber selection + focus ring */
|
||||
::selection {
|
||||
background: var(--color-accent);
|
||||
color: var(--color-cta-text);
|
||||
}
|
||||
|
||||
:focus-visible {
|
||||
outline: 2px solid var(--color-accent);
|
||||
outline-offset: 2px;
|
||||
}
|
||||
|
||||
/* ── Skip to Content ── */
|
||||
.skip-link {
|
||||
position: absolute;
|
||||
@@ -157,11 +173,12 @@ body {
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
font-family: var(--font-mono);
|
||||
font-size: 1.05rem;
|
||||
font-size: 1.0rem;
|
||||
font-weight: 650;
|
||||
color: var(--color-text);
|
||||
text-decoration: none;
|
||||
letter-spacing: -0.01em;
|
||||
letter-spacing: 0.02em;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.logo-icon {
|
||||
@@ -178,10 +195,13 @@ body {
|
||||
.nav nav a {
|
||||
color: var(--color-text-soft);
|
||||
text-decoration: none;
|
||||
padding: 8px 16px;
|
||||
padding: 8px 15px;
|
||||
border-radius: var(--radius-sm);
|
||||
font-size: 0.875rem;
|
||||
font-weight: 500;
|
||||
font-family: var(--font-mono);
|
||||
font-size: 0.73rem;
|
||||
font-weight: 560;
|
||||
letter-spacing: 0.05em;
|
||||
text-transform: uppercase;
|
||||
transition: color var(--ease), background var(--ease);
|
||||
}
|
||||
|
||||
@@ -191,10 +211,19 @@ body {
|
||||
background: var(--color-bg-alt);
|
||||
}
|
||||
|
||||
/* Current page indicator */
|
||||
.nav nav a.nav-active {
|
||||
color: var(--color-text);
|
||||
background: var(--color-bg-alt);
|
||||
box-shadow: inset 0 -2px 0 var(--color-accent);
|
||||
}
|
||||
|
||||
.nav-cta {
|
||||
background: var(--color-accent) !important;
|
||||
color: var(--color-cta-text) !important;
|
||||
font-weight: 600 !important;
|
||||
font-weight: 640 !important;
|
||||
letter-spacing: 0.05em;
|
||||
text-transform: uppercase;
|
||||
margin-left: 8px;
|
||||
}
|
||||
|
||||
@@ -231,18 +260,44 @@ body {
|
||||
[data-theme="light"] .theme-icon-light { display: none; }
|
||||
|
||||
/* ── Hero ── */
|
||||
.hero {
|
||||
padding: 90px 28px 70px;
|
||||
.hero,
|
||||
.hero-page {
|
||||
position: relative;
|
||||
padding: 96px 28px 72px;
|
||||
text-align: center;
|
||||
background: var(--color-hero-gradient);
|
||||
background:
|
||||
linear-gradient(var(--color-hero-grid) 1px, transparent 1px),
|
||||
linear-gradient(90deg, var(--color-hero-grid) 1px, transparent 1px),
|
||||
radial-gradient(ellipse 60% 45% at 50% -5%, var(--color-hero-glow), transparent 70%),
|
||||
var(--color-hero-gradient);
|
||||
background-size: 42px 42px, 42px 42px, 100% 100%, 100% 100%;
|
||||
border-bottom: 1px solid var(--color-border-light);
|
||||
}
|
||||
|
||||
/* Smaller hero variant used on the edition pages */
|
||||
.hero-page {
|
||||
padding: 76px 28px 60px;
|
||||
}
|
||||
|
||||
.hero-page h1 {
|
||||
font-size: clamp(1.9rem, 4vw, 2.7rem);
|
||||
}
|
||||
|
||||
.hero-inner {
|
||||
max-width: var(--w-narrow);
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
/* terminal-style sigil line above the headline */
|
||||
.hero-sigil {
|
||||
font-family: var(--font-mono);
|
||||
font-size: 0.74rem;
|
||||
letter-spacing: 0.14em;
|
||||
text-transform: uppercase;
|
||||
color: var(--color-accent-dim);
|
||||
margin-bottom: 22px;
|
||||
}
|
||||
|
||||
.hero h1 {
|
||||
font-size: clamp(2.2rem, 5vw, 3.4rem);
|
||||
font-weight: 750;
|
||||
@@ -256,6 +311,18 @@ body {
|
||||
color: var(--color-accent);
|
||||
}
|
||||
|
||||
/* blinking block caret — terminal cue */
|
||||
.hero-highlight::after {
|
||||
content: "";
|
||||
display: inline-block;
|
||||
width: 0.5ch;
|
||||
height: 1.02em;
|
||||
margin-left: 5px;
|
||||
vertical-align: text-bottom;
|
||||
background: var(--color-accent);
|
||||
animation: caret-blink 1.15s steps(1) infinite;
|
||||
}
|
||||
|
||||
.tagline {
|
||||
font-size: 1.1rem;
|
||||
color: var(--color-text-soft);
|
||||
@@ -279,20 +346,21 @@ body {
|
||||
background: var(--color-accent);
|
||||
color: var(--color-cta-text);
|
||||
padding: 14px 32px;
|
||||
font-size: 0.95rem;
|
||||
font-weight: 620;
|
||||
font-size: 0.82rem;
|
||||
font-weight: 640;
|
||||
text-decoration: none;
|
||||
border-radius: var(--radius-sm);
|
||||
transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
|
||||
font-family: var(--font-mono);
|
||||
letter-spacing: -0.01em;
|
||||
box-shadow: 0 2px 8px hsla(162 88% 43% / 0.25);
|
||||
letter-spacing: 0.08em;
|
||||
text-transform: uppercase;
|
||||
box-shadow: 0 2px 8px hsla(48 97% 55% / 0.22);
|
||||
}
|
||||
|
||||
.cta:hover {
|
||||
background: var(--color-accent-dim);
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 4px 16px hsla(162 88% 43% / 0.35);
|
||||
box-shadow: 0 4px 18px hsla(48 97% 55% / 0.32);
|
||||
}
|
||||
|
||||
.cta-secondary {
|
||||
@@ -300,11 +368,14 @@ body {
|
||||
align-items: center;
|
||||
color: var(--color-text-soft);
|
||||
padding: 14px 32px;
|
||||
font-size: 0.95rem;
|
||||
font-weight: 500;
|
||||
font-size: 0.82rem;
|
||||
font-weight: 520;
|
||||
text-decoration: none;
|
||||
border: 1.5px solid var(--color-border);
|
||||
border-radius: var(--radius-sm);
|
||||
font-family: var(--font-mono);
|
||||
letter-spacing: 0.08em;
|
||||
text-transform: uppercase;
|
||||
transition: border-color var(--ease), color var(--ease), background var(--ease);
|
||||
}
|
||||
|
||||
@@ -334,15 +405,16 @@ body {
|
||||
.section-label {
|
||||
display: inline-block;
|
||||
font-family: var(--font-mono);
|
||||
font-size: 0.72rem;
|
||||
font-weight: 600;
|
||||
font-size: 0.68rem;
|
||||
font-weight: 620;
|
||||
color: var(--color-accent);
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.08em;
|
||||
letter-spacing: 0.12em;
|
||||
margin-bottom: 14px;
|
||||
padding: 5px 14px;
|
||||
padding: 5px 13px;
|
||||
background: var(--color-accent-bg);
|
||||
border-radius: 20px;
|
||||
border: 1px solid var(--color-accent-border);
|
||||
border-radius: var(--radius-sm);
|
||||
}
|
||||
|
||||
.section-inner h2 {
|
||||
@@ -357,6 +429,16 @@ body {
|
||||
max-width: 640px;
|
||||
}
|
||||
|
||||
.section-inner h2::before {
|
||||
content: "";
|
||||
display: block;
|
||||
width: 32px;
|
||||
height: 3px;
|
||||
margin: 0 auto 16px;
|
||||
background: var(--color-accent);
|
||||
box-shadow: 0 0 10px var(--color-accent-border);
|
||||
}
|
||||
|
||||
.section-desc {
|
||||
color: var(--color-text-soft);
|
||||
font-size: 1.02rem;
|
||||
@@ -367,6 +449,74 @@ body {
|
||||
line-height: 1.7;
|
||||
}
|
||||
|
||||
/* ── HUD corner brackets (tactical detail) ── */
|
||||
.edition-card,
|
||||
.principle,
|
||||
.stack-card,
|
||||
.compare-card,
|
||||
.contribute-card,
|
||||
.feature-card,
|
||||
.compliance-callout {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.edition-card::before,
|
||||
.principle::before,
|
||||
.stack-card::before,
|
||||
.compare-card::before,
|
||||
.contribute-card::before,
|
||||
.feature-card::before,
|
||||
.compliance-callout::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
top: 7px;
|
||||
left: 7px;
|
||||
width: 11px;
|
||||
height: 11px;
|
||||
border-top: 2px solid var(--color-accent-border);
|
||||
border-left: 2px solid var(--color-accent-border);
|
||||
opacity: 0.9;
|
||||
transition: border-color var(--ease);
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.edition-card::after,
|
||||
.principle::after,
|
||||
.stack-card::after,
|
||||
.compare-card::after,
|
||||
.contribute-card::after,
|
||||
.feature-card::after,
|
||||
.compliance-callout::after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
bottom: 7px;
|
||||
right: 7px;
|
||||
width: 11px;
|
||||
height: 11px;
|
||||
border-bottom: 2px solid var(--color-accent-border);
|
||||
border-right: 2px solid var(--color-accent-border);
|
||||
opacity: 0.9;
|
||||
transition: border-color var(--ease);
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.edition-card:hover::before,
|
||||
.principle:hover::before,
|
||||
.stack-card:hover::before,
|
||||
.compare-card:hover::before,
|
||||
.contribute-card:hover::before,
|
||||
.feature-card:hover::before,
|
||||
.compliance-callout:hover::before,
|
||||
.edition-card:hover::after,
|
||||
.principle:hover::after,
|
||||
.stack-card:hover::after,
|
||||
.compare-card:hover::after,
|
||||
.contribute-card:hover::after,
|
||||
.feature-card:hover::after,
|
||||
.compliance-callout:hover::after {
|
||||
border-color: var(--color-accent);
|
||||
}
|
||||
|
||||
/* ── Edition Cards ── */
|
||||
.editions-grid {
|
||||
display: grid;
|
||||
@@ -433,13 +583,14 @@ body {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
padding: 9px 22px;
|
||||
font-size: 0.85rem;
|
||||
font-weight: 600;
|
||||
font-size: 0.76rem;
|
||||
font-weight: 620;
|
||||
text-decoration: none;
|
||||
border-radius: var(--radius-sm);
|
||||
transition: background var(--ease), color var(--ease), border-color var(--ease);
|
||||
font-family: var(--font-mono);
|
||||
letter-spacing: -0.01em;
|
||||
letter-spacing: 0.06em;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.card-btn-primary {
|
||||
@@ -463,6 +614,14 @@ body {
|
||||
background: var(--color-bg-alt);
|
||||
}
|
||||
|
||||
/* ── Edition Switcher (cross-links between edition pages) ── */
|
||||
.edition-switcher {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 10px;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
/* ── Feature Grid ── */
|
||||
.features-grid {
|
||||
display: grid;
|
||||
@@ -558,7 +717,7 @@ body {
|
||||
/* ── Stack Grid ── */
|
||||
.stack-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(4, 1fr);
|
||||
grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
|
||||
gap: 16px;
|
||||
}
|
||||
|
||||
@@ -613,6 +772,55 @@ body {
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
/* ── Security Stack ── */
|
||||
.security-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
|
||||
gap: 16px;
|
||||
margin-bottom: 28px;
|
||||
}
|
||||
|
||||
.compliance-callout {
|
||||
max-width: 760px;
|
||||
margin: 0 auto 24px;
|
||||
text-align: left;
|
||||
padding: 22px 28px;
|
||||
border: 1px dashed var(--color-accent-border);
|
||||
border-radius: var(--radius-md);
|
||||
background: var(--color-accent-bg);
|
||||
}
|
||||
|
||||
.compliance-badge {
|
||||
display: inline-block;
|
||||
font-family: var(--font-mono);
|
||||
font-size: 0.68rem;
|
||||
font-weight: 650;
|
||||
color: var(--color-accent-dim);
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.05em;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.compliance-callout p {
|
||||
color: var(--color-text-soft);
|
||||
font-size: 0.9rem;
|
||||
line-height: 1.7;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.compliance-callout strong {
|
||||
color: var(--color-text);
|
||||
font-weight: 660;
|
||||
}
|
||||
|
||||
.security-note {
|
||||
max-width: 640px;
|
||||
margin: 0 auto;
|
||||
color: var(--color-text-soft);
|
||||
font-size: 0.85rem;
|
||||
line-height: 1.7;
|
||||
}
|
||||
|
||||
/* Edition Teaser */
|
||||
.edition-teaser {
|
||||
margin-top: 24px;
|
||||
@@ -646,44 +854,6 @@ body {
|
||||
font-weight: 660;
|
||||
}
|
||||
|
||||
/* ── Tool Grid ── */
|
||||
.tool-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
.tool {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 6px;
|
||||
background: var(--color-bg-card);
|
||||
border: 1px solid var(--color-border);
|
||||
border-radius: var(--radius-sm);
|
||||
padding: 20px 24px;
|
||||
text-align: left;
|
||||
transition: border-color var(--ease), box-shadow var(--ease);
|
||||
}
|
||||
|
||||
.tool:hover {
|
||||
border-color: var(--color-accent-border);
|
||||
box-shadow: var(--shadow-card);
|
||||
}
|
||||
|
||||
.tool code {
|
||||
font-family: var(--font-mono);
|
||||
font-size: 0.84rem;
|
||||
font-weight: 600;
|
||||
color: var(--color-accent-dim);
|
||||
letter-spacing: -0.01em;
|
||||
}
|
||||
|
||||
.tool span {
|
||||
color: var(--color-text-soft);
|
||||
font-size: 0.83rem;
|
||||
line-height: 1.55;
|
||||
}
|
||||
|
||||
/* ── Compare Grid ── */
|
||||
.compare-grid {
|
||||
display: grid;
|
||||
@@ -861,7 +1031,8 @@ body {
|
||||
border: none;
|
||||
padding: 0;
|
||||
display: flex;
|
||||
gap: 24px;
|
||||
flex-wrap: wrap;
|
||||
gap: 16px 24px;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
@@ -928,10 +1099,11 @@ body {
|
||||
border-radius: var(--radius-sm);
|
||||
background: var(--color-bg);
|
||||
color: var(--color-text);
|
||||
font-size: 0.92rem;
|
||||
font-size: 0.9rem;
|
||||
outline: none;
|
||||
transition: border-color var(--ease), box-shadow var(--ease);
|
||||
font-family: var(--font-mono);
|
||||
letter-spacing: 0.02em;
|
||||
}
|
||||
|
||||
.input::placeholder {
|
||||
@@ -950,12 +1122,13 @@ body {
|
||||
border-radius: var(--radius-sm);
|
||||
background: var(--color-accent);
|
||||
color: var(--color-cta-text);
|
||||
font-size: 0.92rem;
|
||||
font-weight: 620;
|
||||
font-size: 0.8rem;
|
||||
font-weight: 640;
|
||||
cursor: pointer;
|
||||
transition: background var(--ease), transform var(--ease);
|
||||
font-family: var(--font-mono);
|
||||
letter-spacing: -0.01em;
|
||||
letter-spacing: 0.08em;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.btn:hover {
|
||||
@@ -1059,6 +1232,16 @@ body {
|
||||
font-size: 0.76rem;
|
||||
}
|
||||
|
||||
/* ── Keyframes (HUD) ── */
|
||||
@keyframes caret-blink {
|
||||
50% { opacity: 0; }
|
||||
}
|
||||
|
||||
@keyframes status-pulse {
|
||||
0%, 100% { opacity: 1; }
|
||||
50% { opacity: 0.3; }
|
||||
}
|
||||
|
||||
/* ── Responsive ── */
|
||||
@media (max-width: 920px) {
|
||||
.stack-grid {
|
||||
@@ -1075,12 +1258,13 @@ body {
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
@media (max-width: 800px) {
|
||||
:root {
|
||||
--pad-section: 56px;
|
||||
}
|
||||
|
||||
.hero {
|
||||
.hero,
|
||||
.hero-page {
|
||||
padding: 60px 22px 50px;
|
||||
}
|
||||
|
||||
@@ -1104,18 +1288,15 @@ body {
|
||||
}
|
||||
|
||||
.nav nav a {
|
||||
padding: 6px 10px;
|
||||
font-size: 0.8rem;
|
||||
padding: 6px 8px;
|
||||
font-size: 0.7rem;
|
||||
letter-spacing: 0.03em;
|
||||
}
|
||||
|
||||
.principles-grid {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.tool-grid {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.editions-grid {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
@@ -1125,12 +1306,37 @@ body {
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 640px) {
|
||||
.nav-inner {
|
||||
padding: 0 14px;
|
||||
gap: 6px;
|
||||
}
|
||||
|
||||
/* keep just the mark below 640px */
|
||||
.logo span {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.nav nav a {
|
||||
padding: 6px 7px;
|
||||
font-size: 0.68rem;
|
||||
letter-spacing: 0.02em;
|
||||
}
|
||||
|
||||
.nav-cta {
|
||||
padding: 6px 12px;
|
||||
margin-left: 4px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 580px) {
|
||||
.hero {
|
||||
.hero,
|
||||
.hero-page {
|
||||
padding: 44px 18px 36px;
|
||||
}
|
||||
|
||||
.hero h1 {
|
||||
.hero h1,
|
||||
.hero-page h1 {
|
||||
font-size: 1.75rem;
|
||||
}
|
||||
|
||||
@@ -1143,12 +1349,28 @@ body {
|
||||
}
|
||||
|
||||
.nav-inner {
|
||||
padding: 0 14px;
|
||||
padding: 0 12px;
|
||||
gap: 6px;
|
||||
}
|
||||
|
||||
.logo {
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
/* keep just the mark on small phones */
|
||||
.logo span {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.nav nav a {
|
||||
padding: 6px 7px;
|
||||
font-size: 0.74rem;
|
||||
padding: 5px 6px;
|
||||
font-size: 0.62rem;
|
||||
letter-spacing: 0.02em;
|
||||
}
|
||||
|
||||
.nav-cta {
|
||||
padding: 6px 10px;
|
||||
margin-left: 4px;
|
||||
}
|
||||
|
||||
.input {
|
||||
@@ -1163,6 +1385,10 @@ body {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.security-grid {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.compare-grid {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
@@ -1181,3 +1407,29 @@ body {
|
||||
}
|
||||
}
|
||||
|
||||
/* Very small screens: wrap the nav links onto their own row */
|
||||
@media (max-width: 540px) {
|
||||
.nav-inner {
|
||||
height: auto;
|
||||
flex-wrap: wrap;
|
||||
padding: 10px 14px 8px;
|
||||
row-gap: 8px;
|
||||
}
|
||||
|
||||
.nav nav {
|
||||
order: 3;
|
||||
flex-wrap: wrap;
|
||||
justify-content: center;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.nav nav a {
|
||||
padding: 5px 8px;
|
||||
font-size: 0.66rem;
|
||||
}
|
||||
|
||||
.theme-toggle {
|
||||
margin-left: auto;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="32" height="32">
|
||||
<rect width="32" height="32" fill="#0b0c0e"/>
|
||||
<path d="M5 27L16 5L27 27" fill="none" stroke="#0acf97" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M9 20H23" fill="none" stroke="#0acf97" stroke-width="2.5" stroke-linecap="round"/>
|
||||
<path d="M5 27L16 5L27 27" fill="none" stroke="#f59e0b" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M9 20H23" fill="none" stroke="#f59e0b" stroke-width="2.5" stroke-linecap="round"/>
|
||||
</svg>
|
||||
|
||||
|
||||
|
Before Width: | Height: | Size: 360 B After Width: | Height: | Size: 360 B |
@@ -5,6 +5,14 @@
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>{{.Title}}</title>
|
||||
<meta name="description" content="Arcline OS is a hardened Debian-based Linux distribution for security practitioners — pre-configured SIEM agent, network IDS, compliance scanning, and zero telemetry.">
|
||||
<meta name="theme-color" content="#f59e0b">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:site_name" content="Arcline Project">
|
||||
<meta property="og:title" content="{{.Title}}">
|
||||
<meta property="og:description" content="A hardened Debian-based Linux OS for people who defend infrastructure — SIEM agent, network IDS, compliance scanning, and zero telemetry, from first boot.">
|
||||
<meta property="og:url" content="https://arclineproject.org/">
|
||||
<meta name="twitter:card" content="summary">
|
||||
<link rel="icon" type="image/svg+xml" href="/static/favicon.svg">
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
|
||||
198
templates/cloud.html
Normal file
198
templates/cloud.html
Normal file
@@ -0,0 +1,198 @@
|
||||
{{define "content"}}
|
||||
{{template "nav" .}}
|
||||
|
||||
<main id="main">
|
||||
|
||||
<!-- Hero -->
|
||||
<section class="hero hero-page">
|
||||
<div class="hero-inner">
|
||||
<h1>Arcline <span class="hero-highlight">Cloud</span></h1>
|
||||
<p class="tagline">
|
||||
Minimal cloud images with a small attack surface — Falco runtime security
|
||||
and CIS benchmark scanning built in. Ready for AWS, GCP, Azure, or your
|
||||
own private cloud.
|
||||
</p>
|
||||
<div class="hero-actions">
|
||||
<a href="#get-started" class="cta">Get Early Access</a>
|
||||
<a href="/" class="cta-secondary">See all editions</a>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Overview -->
|
||||
<section class="section">
|
||||
<div class="section-inner">
|
||||
<div class="section-label">Overview</div>
|
||||
<h2>Small footprint. Tight posture.<br>Security-first from the image.</h2>
|
||||
<p class="section-desc">
|
||||
Arcline Cloud is built for workloads that need the smallest possible attack
|
||||
surface — a minimal hardened base with runtime and compliance watching built in.
|
||||
</p>
|
||||
<div class="principles-grid">
|
||||
<div class="principle">
|
||||
<div class="principle-icon">
|
||||
<svg width="22" height="22" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
||||
<circle cx="12" cy="12" r="10"/>
|
||||
<path d="M2 12h20"/>
|
||||
<path d="M12 2a15.3 15.3 0 014 10 15.3 15.3 0 01-4 10"/>
|
||||
</svg>
|
||||
</div>
|
||||
<div>
|
||||
<h3>Minimal attack surface</h3>
|
||||
<p>Nothing installed that you didn't ask for. Less to run, less to exploit, less to patch.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="principle">
|
||||
<div class="principle-icon">
|
||||
<svg width="22" height="22" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
||||
<circle cx="12" cy="12" r="3"/>
|
||||
<path d="M12 2L22 8.5v7L12 22 2 15.5v-7L12 2z"/>
|
||||
</svg>
|
||||
</div>
|
||||
<div>
|
||||
<h3>Runtime security</h3>
|
||||
<p>Falco watches for anomalous container and syscall behavior — in production, not just at install.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="principle">
|
||||
<div class="principle-icon">
|
||||
<svg width="22" height="22" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
||||
<rect x="3" y="3" width="18" height="18" rx="3"/>
|
||||
<path d="M8 12l2.5 2.5L16 9"/>
|
||||
</svg>
|
||||
</div>
|
||||
<div>
|
||||
<h3>CIS scanning built in</h3>
|
||||
<p>OpenSCAP with CIS Benchmark profiles, so posture checks are part of the image — not an afterthought.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="principle">
|
||||
<div class="principle-icon">
|
||||
<svg width="22" height="22" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
||||
<rect x="2" y="2" width="20" height="20" rx="3"/>
|
||||
<rect x="6" y="6" width="12" height="12" rx="1.5" stroke-dasharray="3 2"/>
|
||||
</svg>
|
||||
</div>
|
||||
<div>
|
||||
<h3>Hardened by default</h3>
|
||||
<p>The same hardened Debian base — lockdown-mode kernel, seccomp, AppArmor — as every edition.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="principle">
|
||||
<div class="principle-icon">
|
||||
<svg width="22" height="22" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
||||
<circle cx="12" cy="12" r="10"/>
|
||||
<path d="M2 12h20"/>
|
||||
</svg>
|
||||
</div>
|
||||
<div>
|
||||
<h3>Zero telemetry</h3>
|
||||
<p>No phone-home, no analytics, no cloud integration you didn't opt into.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="principle">
|
||||
<div class="principle-icon">
|
||||
<svg width="22" height="22" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
||||
<rect x="2" y="2" width="20" height="20" rx="3"/>
|
||||
<path d="M12 2v20"/>
|
||||
<path d="M2 12h20"/>
|
||||
</svg>
|
||||
</div>
|
||||
<div>
|
||||
<h3>Cloud-ready images</h3>
|
||||
<p>Minimal images ready for AWS, GCP, Azure, or your own private cloud.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- What's Included -->
|
||||
<section class="section section-alt">
|
||||
<div class="section-inner">
|
||||
<div class="section-label">What's Included</div>
|
||||
<h2>A security posture you can ship.</h2>
|
||||
<p class="section-desc">
|
||||
Arcline Cloud images are built around a minimal footprint with runtime and
|
||||
compliance security in the image itself.
|
||||
</p>
|
||||
<div class="security-grid">
|
||||
<div class="stack-card">
|
||||
<div class="stack-header">Base Image</div>
|
||||
<ul>
|
||||
<li>Minimal hardened Debian base</li>
|
||||
<li>Small package footprint</li>
|
||||
<li>btrfs root + snapshots</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="stack-card">
|
||||
<div class="stack-header">Runtime Security</div>
|
||||
<ul>
|
||||
<li>Falco container / syscall detection</li>
|
||||
<li>seccomp + AppArmor</li>
|
||||
<li>Default-deny nftables</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="stack-card">
|
||||
<div class="stack-header">Compliance</div>
|
||||
<ul>
|
||||
<li>OpenSCAP + CIS Benchmark profiles</li>
|
||||
<li>syft + grype SBOM / CVE scanning</li>
|
||||
<li>Lynis hardening score</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="stack-card">
|
||||
<div class="stack-header">Platforms</div>
|
||||
<ul>
|
||||
<li>AWS</li>
|
||||
<li>GCP</li>
|
||||
<li>Azure</li>
|
||||
<li>Private cloud</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="compliance-callout">
|
||||
<div class="compliance-badge">Compliance-ready by default</div>
|
||||
<p>
|
||||
Arcline Cloud images ship CIS Benchmark-aligned by default, with OpenSCAP
|
||||
scanning mapped toward <strong>HIPAA</strong>, <strong>PCI-DSS</strong>, and
|
||||
<strong>SOC 2</strong> control families. The images themselves aren't certified —
|
||||
only audited deployments can be — but the defaults give you a running start.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Other Editions -->
|
||||
<section class="section">
|
||||
<div class="section-inner">
|
||||
<div class="section-label">Other Editions</div>
|
||||
<h2>One hardened base. Three editions.</h2>
|
||||
<p class="section-desc">
|
||||
Every edition shares the same hardened Debian base and zero-telemetry guarantee.
|
||||
</p>
|
||||
<div class="edition-switcher">
|
||||
<a href="/server" class="card-btn card-btn-secondary">Server</a>
|
||||
<a href="/workstation" class="card-btn card-btn-secondary">Workstation</a>
|
||||
<a href="/cloud" class="card-btn card-btn-primary" aria-current="page">Cloud</a>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Get Started -->
|
||||
<section id="get-started" class="section section-alt">
|
||||
<div class="section-inner">
|
||||
<div class="section-label">Get Started</div>
|
||||
<h2>Arcline Cloud is in active development.<br>Be there at the start.</h2>
|
||||
<p class="section-desc">
|
||||
We're building the ISO pipeline and hardening the defaults.
|
||||
Sign up to receive early access and help shape the first release.
|
||||
</p>
|
||||
{{template "waitlistForm" .}}
|
||||
</div>
|
||||
</section>
|
||||
|
||||
</main>
|
||||
|
||||
{{template "footer" .}}
|
||||
{{end}}
|
||||
@@ -1,47 +1,5 @@
|
||||
{{define "content"}}
|
||||
<a href="#main" class="skip-link">Skip to main content</a>
|
||||
|
||||
<header class="nav">
|
||||
<div class="nav-inner">
|
||||
<a href="/" class="logo">
|
||||
<svg class="logo-icon" width="28" height="28" viewBox="0 0 32 32" fill="none">
|
||||
<rect width="32" height="32" fill="#0b0c0e"/>
|
||||
<path d="M5 27L16 5L27 27" fill="none" stroke="#0acf97" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M9 20H23" fill="none" stroke="#0acf97" stroke-width="2.5" stroke-linecap="round"/>
|
||||
</svg>
|
||||
<span>Arcline Project</span>
|
||||
</a>
|
||||
<nav>
|
||||
<a href="#editions">Editions</a>
|
||||
<a href="#about">About</a>
|
||||
<a href="#toolchain">Toolchain</a>
|
||||
<a href="#contribute">Contribute</a>
|
||||
<button
|
||||
type="button"
|
||||
data-theme-toggle
|
||||
class="theme-toggle"
|
||||
aria-label="Toggle theme"
|
||||
title="Toggle light / dark mode"
|
||||
>
|
||||
<svg class="theme-icon theme-icon-light" width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
||||
<circle cx="12" cy="12" r="5"/>
|
||||
<line x1="12" y1="1" x2="12" y2="3"/>
|
||||
<line x1="12" y1="21" x2="12" y2="23"/>
|
||||
<line x1="4.22" y1="4.22" x2="5.64" y2="5.64"/>
|
||||
<line x1="18.36" y1="18.36" x2="19.78" y2="19.78"/>
|
||||
<line x1="1" y1="12" x2="3" y2="12"/>
|
||||
<line x1="21" y1="12" x2="23" y2="12"/>
|
||||
<line x1="4.22" y1="19.78" x2="5.64" y2="18.36"/>
|
||||
<line x1="18.36" y1="5.64" x2="19.78" y2="4.22"/>
|
||||
</svg>
|
||||
<svg class="theme-icon theme-icon-dark" width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
||||
<path d="M21 12.79A9 9 0 1111.21 3 7 7 0 0021 12.79z"/>
|
||||
</svg>
|
||||
</button>
|
||||
<a href="#get-started" class="nav-cta">Get Started</a>
|
||||
</nav>
|
||||
</div>
|
||||
</header>
|
||||
{{template "nav" .}}
|
||||
|
||||
<main id="main">
|
||||
|
||||
@@ -50,11 +8,12 @@
|
||||
<div class="hero-inner">
|
||||
<h1>
|
||||
The Linux OS for<br>
|
||||
<span class="hero-highlight">people who run infrastructure.</span>
|
||||
<span class="hero-highlight">people who defend infrastructure.</span>
|
||||
</h1>
|
||||
<p class="tagline">
|
||||
Hardened Debian base. Pre-configured monitoring, auditing, and security
|
||||
tooling. Zero telemetry. Your systems are production-ready from first boot.
|
||||
Hardened Debian base. Pre-configured security stack — SIEM agent, network
|
||||
IDS, compliance scanning. Zero telemetry. Your systems are defense-ready
|
||||
from first boot.
|
||||
</p>
|
||||
<div class="hero-actions">
|
||||
<a href="#get-started" class="cta">Get Early Access</a>
|
||||
@@ -69,7 +28,7 @@
|
||||
<div class="section-label">Editions</div>
|
||||
<h2>Our flagship Arcline OS variants<br>for different use cases.</h2>
|
||||
<p class="section-desc">
|
||||
Pick the edition that matches your workload. All share the same
|
||||
Pick the edition that matches your role. All share the same
|
||||
hardened Debian base and zero-telemetry guarantee.
|
||||
</p>
|
||||
<div class="editions-grid">
|
||||
@@ -81,10 +40,10 @@
|
||||
</svg>
|
||||
</div>
|
||||
<h3>Arcline Server</h3>
|
||||
<p>A hardened, production-ready server OS with built-in observability and zero telemetry. Run applications on bare metal or the cloud.</p>
|
||||
<p>A hardened, production-ready host for SOC and production use — built-in SIEM agent and network IDS on top of the hardened base, with zero telemetry.</p>
|
||||
<div class="card-actions">
|
||||
<a href="#get-started" class="card-btn card-btn-primary">Get Access</a>
|
||||
<a href="#about" class="card-btn card-btn-secondary">Learn More</a>
|
||||
<a href="/server" class="card-btn card-btn-secondary">Learn More</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -97,10 +56,10 @@
|
||||
</svg>
|
||||
</div>
|
||||
<h3>Arcline Workstation</h3>
|
||||
<p>Same hardened base, with a lightweight KDE Plasma desktop, pre-configured dev toolchains, and privacy-hardened browser profiles.</p>
|
||||
<p>A security analyst / blue-team workstation — KDE Plasma, pre-configured dev toolchains, privacy-hardened browser, forensics-friendly tooling, and secrets scanning.</p>
|
||||
<div class="card-actions">
|
||||
<a href="#get-started" class="card-btn card-btn-primary">Get Access</a>
|
||||
<a href="#about" class="card-btn card-btn-secondary">Coming Soon</a>
|
||||
<a href="/workstation" class="card-btn card-btn-secondary">Learn More</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -114,10 +73,10 @@
|
||||
</svg>
|
||||
</div>
|
||||
<h3>Arcline Cloud</h3>
|
||||
<p>Minimal base images optimized for cloud infrastructures. Ready for AWS, GCP, Azure, or your own private cloud.</p>
|
||||
<p>Minimal cloud images with a small attack surface — Falco runtime security and CIS benchmark scanning built in. Ready for AWS, GCP, Azure, or private cloud.</p>
|
||||
<div class="card-actions">
|
||||
<a href="#get-started" class="card-btn card-btn-primary">Get Access</a>
|
||||
<a href="#about" class="card-btn card-btn-secondary">Learn More</a>
|
||||
<a href="/cloud" class="card-btn card-btn-secondary">Learn More</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -131,9 +90,9 @@
|
||||
<h2>A Debian-derived OS that doesn't<br>make you start from scratch.</h2>
|
||||
<p class="section-desc">
|
||||
Debian gives you a rock-solid base. Arcline OS hardens it, layers on a
|
||||
full observability stack, and ships with pre-configured container
|
||||
infrastructure. No telemetry. No snap store. No cloud integration.
|
||||
Just a secure, auditable OS that respects your hardware.
|
||||
full security and observability stack, and ships with pre-configured
|
||||
container infrastructure. No telemetry. No snap store. No cloud
|
||||
integration. Just a secure, auditable OS that respects your hardware.
|
||||
</p>
|
||||
<div class="principles-grid">
|
||||
<div class="principle">
|
||||
@@ -145,7 +104,7 @@
|
||||
</div>
|
||||
<div>
|
||||
<h3>Secure by default</h3>
|
||||
<p>Hardened Linux kernel with seccomp, AppArmor profiles, and restrictive nftables firewall. You opt in to exposure — never out.</p>
|
||||
<p>Hardened kernel with lockdown, seccomp, and AppArmor profiles. Default-deny nftables firewall. You opt in to exposure — never out.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="principle">
|
||||
@@ -195,7 +154,7 @@
|
||||
</div>
|
||||
<div>
|
||||
<h3>Infrastructure-aware</h3>
|
||||
<p>Prometheus node_exporter, Grafana dashboards, and Loki log aggregation — pre-configured out of the box.</p>
|
||||
<p>Observability that feeds your security stack — node_exporter, Grafana, Loki, and a pre-configured host security agent, out of the box.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="principle">
|
||||
@@ -222,8 +181,8 @@
|
||||
<div class="section-label">What's Included</div>
|
||||
<h2>Production-ready from first boot.</h2>
|
||||
<p class="section-desc">
|
||||
Arcline OS layers pre-configured infrastructure tooling on top of a hardened
|
||||
Debian base. Everything is documented, auditable, and yours.
|
||||
Arcline OS layers pre-configured infrastructure and security tooling on top
|
||||
of a hardened Debian base. Everything is documented, auditable, and yours.
|
||||
</p>
|
||||
<div class="stack-grid">
|
||||
<div class="stack-card">
|
||||
@@ -236,17 +195,6 @@
|
||||
<li>Docker + Podman containers</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="stack-card">
|
||||
<div class="stack-header">Arcline Toolchain</div>
|
||||
<ul>
|
||||
<li>arcline-uptime — service monitoring</li>
|
||||
<li>arcline-check — privacy auditor</li>
|
||||
<li>arcline-audit — site health scanner</li>
|
||||
<li>arcline-dns — propagation checker</li>
|
||||
<li>arcline-vault — secrets store</li>
|
||||
<li>arcline-email — self-hosted mail stack</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="stack-card">
|
||||
<div class="stack-header">Developer Environment</div>
|
||||
<ul>
|
||||
@@ -269,61 +217,91 @@
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Toolchain deep-dive -->
|
||||
<section id="toolchain" class="section section-alt">
|
||||
<!-- Security Stack -->
|
||||
<section id="security" class="section">
|
||||
<div class="section-inner">
|
||||
<div class="section-label">The Toolchain</div>
|
||||
<h2>11 Go tools. Built in production.<br>Yours to use.</h2>
|
||||
<div class="section-label">Security Stack</div>
|
||||
<h2>Defense-in-depth, pre-configured<br>from first boot.</h2>
|
||||
<p class="section-desc">
|
||||
Every Arcline tool was built to solve real infrastructure problems.
|
||||
They run in production at Arcline IT. Now they ship with Arcline OS.
|
||||
Beyond the hardened base, Arcline OS ships a named security tooling layer —
|
||||
host and network detection, malware and secrets scanning, compliance and
|
||||
runtime checks. Pre-configured, documented, and yours.
|
||||
</p>
|
||||
<div class="tool-grid">
|
||||
<div class="tool">
|
||||
<code>arcline-uptime</code>
|
||||
<span>HTTP, TCP, TLS, DNS monitoring with Prometheus metrics export</span>
|
||||
<div class="security-grid">
|
||||
<div class="stack-card">
|
||||
<div class="stack-header">Host IDS / SIEM</div>
|
||||
<ul>
|
||||
<li>Wazuh agent, pre-configured</li>
|
||||
<li>Host + integrity telemetry to your SIEM</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="tool">
|
||||
<code>arcline-check</code>
|
||||
<span>CDN and transparency auditor — verifies sites aren't leaking data</span>
|
||||
<div class="stack-card">
|
||||
<div class="stack-header">Network IDS</div>
|
||||
<ul>
|
||||
<li>Suricata (or Zeek)</li>
|
||||
<li>Detects malicious traffic, not just uptime</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="tool">
|
||||
<code>arcline-audit</code>
|
||||
<span>Full site health scanner — SSL, headers, performance, accessibility</span>
|
||||
<div class="stack-card">
|
||||
<div class="stack-header">Malware Scanning</div>
|
||||
<ul>
|
||||
<li>ClamAV baseline scanning</li>
|
||||
<li>Scheduled and on-demand</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="tool">
|
||||
<code>arcline-dns</code>
|
||||
<span>DNS propagation checker across multiple resolvers</span>
|
||||
<div class="stack-card">
|
||||
<div class="stack-header">Compliance Scanning</div>
|
||||
<ul>
|
||||
<li>OpenSCAP + CIS Benchmark profiles</li>
|
||||
<li>Mapped toward HIPAA, PCI-DSS, SOC 2</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="tool">
|
||||
<code>arcline-vault</code>
|
||||
<span>Encrypted secrets store with REST API and CLI</span>
|
||||
<div class="stack-card">
|
||||
<div class="stack-header">Runtime Security</div>
|
||||
<ul>
|
||||
<li>Falco — container / syscall anomalies</li>
|
||||
<li>Cloud edition</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="tool">
|
||||
<code>arcline-email</code>
|
||||
<span>Self-hosted SMTP/IMAP stack — OpenSMTPD + Dovecot + Rspamd</span>
|
||||
<div class="stack-card">
|
||||
<div class="stack-header">Secrets Scanning</div>
|
||||
<ul>
|
||||
<li>gitleaks + trufflehog</li>
|
||||
<li>Workstation / dev edition</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="tool">
|
||||
<code>arcline-migrate</code>
|
||||
<span>cPanel and Plesk to Arcline migration tool</span>
|
||||
<div class="stack-card">
|
||||
<div class="stack-header">Supply Chain / SBOM</div>
|
||||
<ul>
|
||||
<li>syft + grype</li>
|
||||
<li>Know what's installed, catch known CVEs</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="tool">
|
||||
<code>arcline-billing</code>
|
||||
<span>Stripe-powered subscription management</span>
|
||||
</div>
|
||||
<div class="tool">
|
||||
<code>arcline-portal</code>
|
||||
<span>Customer dashboard with SSL monitoring and ticketing</span>
|
||||
</div>
|
||||
<div class="tool">
|
||||
<code>arcline-website</code>
|
||||
<span>Go HTTP server powering arcline.it</span>
|
||||
</div>
|
||||
<div class="tool">
|
||||
<code>arcline-status</code>
|
||||
<span>Static status page generator</span>
|
||||
<div class="stack-card">
|
||||
<div class="stack-header">System Auditing</div>
|
||||
<ul>
|
||||
<li>Lynis hardening score</li>
|
||||
<li>Continuous, post-install</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="compliance-callout">
|
||||
<div class="compliance-badge">Compliance-ready by default</div>
|
||||
<p>
|
||||
Arcline OS ships CIS Benchmark-aligned by default, with compliance scanning
|
||||
mapped toward <strong>HIPAA</strong>, <strong>PCI-DSS</strong>, and
|
||||
<strong>SOC 2</strong> control families. The OS itself isn't certified —
|
||||
only audited deployments can be — but the defaults give you a running start.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<p class="security-note">
|
||||
The Wazuh agent pairs naturally with
|
||||
<a href="https://arcline.it" class="inline-link">Arcline IT's</a>
|
||||
Wazuh-based managed monitoring. Want the whole stack run and watched for you?
|
||||
Arcline IT's managed security services cover hardening, monitoring, and response.
|
||||
</p>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
@@ -351,9 +329,17 @@
|
||||
<div class="compare-label">Alpine Linux</div>
|
||||
<div class="compare-desc">Minimal and musl-based — ideal for containers, but limited as a full-featured server workstation.</div>
|
||||
</div>
|
||||
<div class="compare-card">
|
||||
<div class="compare-label">Kali Linux</div>
|
||||
<div class="compare-desc">A great offensive-security and pentesting toolkit — but built to break in, not to serve as a hardened daily-driver production OS.</div>
|
||||
</div>
|
||||
<div class="compare-card">
|
||||
<div class="compare-label">Security Onion</div>
|
||||
<div class="compare-desc">An excellent network security monitoring platform — but not a general-purpose or developer-ready OS for your day-to-day hosts.</div>
|
||||
</div>
|
||||
<div class="compare-card compare-highlight">
|
||||
<div class="compare-label">Arcline OS</div>
|
||||
<div class="compare-desc">Hardened Debian base. Pre-configured toolchain. Built-in observability. Zero telemetry. Ready to deploy.</div>
|
||||
<div class="compare-desc">Hardened Debian base. Pre-configured security stack. Built-in observability. Zero telemetry. Ready to deploy.</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -367,7 +353,7 @@
|
||||
<p class="section-desc">
|
||||
Arcline OS is open-source under the GPL. The code lives on
|
||||
<a href="https://git.arcline.it" class="inline-link">git.arcline.it</a>.
|
||||
Every tool, every config, every build script — auditable and forkable.
|
||||
Every config, every build script — auditable and forkable.
|
||||
</p>
|
||||
<div class="contribute-grid">
|
||||
<a href="https://git.arcline.it" class="contribute-card">
|
||||
@@ -377,7 +363,7 @@
|
||||
</svg>
|
||||
</div>
|
||||
<span>Browse the source</span>
|
||||
<small>All 11 tools, build scripts, and infrastructure code.</small>
|
||||
<small>Build scripts, packaging, and infrastructure code.</small>
|
||||
</a>
|
||||
<a href="https://git.arcline.it" class="contribute-card">
|
||||
<div class="contribute-icon">
|
||||
@@ -411,37 +397,10 @@
|
||||
<div class="section-label">Get Started</div>
|
||||
<h2>Arcline OS is in active development.<br>Be there at the start.</h2>
|
||||
<p class="section-desc">
|
||||
We're packaging the tools, building the ISO pipeline, and hardening the defaults.
|
||||
We're building the ISO pipeline and hardening the defaults.
|
||||
Sign up to receive early access and help shape the first release.
|
||||
</p>
|
||||
<form
|
||||
hx-post="/partials/waitlist"
|
||||
hx-target="#waitlist-result"
|
||||
hx-swap="outerHTML"
|
||||
class="waitlist-form"
|
||||
>
|
||||
<fieldset class="edition-checkboxes">
|
||||
<legend>I'm interested in:</legend>
|
||||
<label class="edition-checkbox">
|
||||
<input type="checkbox" name="edition" value="server" checked>
|
||||
<span>Server</span>
|
||||
</label>
|
||||
<label class="edition-checkbox">
|
||||
<input type="checkbox" name="edition" value="workstation">
|
||||
<span>Workstation</span>
|
||||
</label>
|
||||
</fieldset>
|
||||
<input
|
||||
type="email"
|
||||
name="email"
|
||||
placeholder="you@example.com"
|
||||
required
|
||||
class="input"
|
||||
>
|
||||
<button type="submit" class="btn">Get Early Access</button>
|
||||
</form>
|
||||
<div id="waitlist-result"></div>
|
||||
<p class="waitlist-note">No spam. No tracking. We'll only email you when there's something to try.</p>
|
||||
{{template "waitlistForm" .}}
|
||||
</div>
|
||||
</section>
|
||||
|
||||
@@ -452,6 +411,7 @@
|
||||
<div class="sponsor-content">
|
||||
<div class="sponsor-desc">
|
||||
<p>The Arcline Project is funded and operated by <strong>Arcline IT LLC</strong> — the same model as Red Hat and Fedora. The commercial services business at <a href="https://arcline.it" class="inline-link">arcline.it</a> keeps the lights on so the OS stays independent and sustainable.</p>
|
||||
<p>Arcline IT also offers managed security services — hardening, Wazuh-based monitoring, and response — for teams that want Arcline OS run and watched for them.</p>
|
||||
</div>
|
||||
<div class="sponsor-tagline">Secure by default. Self-hosted by principle.</div>
|
||||
</div>
|
||||
@@ -460,40 +420,6 @@
|
||||
|
||||
</main>
|
||||
|
||||
<footer class="footer">
|
||||
<div class="footer-grid">
|
||||
<div class="footer-col">
|
||||
<a href="/" class="footer-logo">Arcline Project</a>
|
||||
<p>An open-source operating system for people who run infrastructure. Hardened Debian base. Zero telemetry. Production-ready.</p>
|
||||
</div>
|
||||
<div class="footer-col">
|
||||
<h4>Editions</h4>
|
||||
<ul>
|
||||
<li><a href="#editions">Server</a></li>
|
||||
<li><a href="#editions">Workstation</a></li>
|
||||
<li><a href="#editions">Cloud</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="footer-col">
|
||||
<h4>Project</h4>
|
||||
<ul>
|
||||
<li><a href="#about">About</a></li>
|
||||
<li><a href="#toolchain">Toolchain</a></li>
|
||||
<li><a href="#contribute">Contribute</a></li>
|
||||
<li><a href="https://git.arcline.it">Source Code</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="footer-col">
|
||||
<h4>Connect</h4>
|
||||
<ul>
|
||||
<li><a href="https://arcline.it">Arcline IT</a></li>
|
||||
<li><a href="https://git.arcline.it">Git</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="footer-bottom">
|
||||
<p>© 2026 Arcline IT LLC. GPL Licensed. No telemetry. No tracking.</p>
|
||||
</div>
|
||||
</footer>
|
||||
{{template "footer" .}}
|
||||
{{end}}
|
||||
|
||||
|
||||
36
templates/partials/footer.html
Normal file
36
templates/partials/footer.html
Normal file
@@ -0,0 +1,36 @@
|
||||
{{define "footer"}}
|
||||
<footer class="footer">
|
||||
<div class="footer-grid">
|
||||
<div class="footer-col">
|
||||
<a href="/" class="footer-logo">Arcline Project</a>
|
||||
<p>An open-source operating system for people who defend infrastructure. Hardened Debian base. Pre-configured security stack. Zero telemetry. Defense-ready.</p>
|
||||
</div>
|
||||
<div class="footer-col">
|
||||
<h4>Editions</h4>
|
||||
<ul>
|
||||
<li><a href="/server">Server</a></li>
|
||||
<li><a href="/workstation">Workstation</a></li>
|
||||
<li><a href="/cloud">Cloud</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="footer-col">
|
||||
<h4>Project</h4>
|
||||
<ul>
|
||||
<li><a href="/#about">About</a></li>
|
||||
<li><a href="/#contribute">Contribute</a></li>
|
||||
<li><a href="https://git.arcline.it">Source Code</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="footer-col">
|
||||
<h4>Connect</h4>
|
||||
<ul>
|
||||
<li><a href="https://arcline.it">Arcline IT</a></li>
|
||||
<li><a href="https://git.arcline.it">Git</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="footer-bottom">
|
||||
<p>© 2026 Arcline IT LLC. GPL Licensed. No telemetry. No tracking.</p>
|
||||
</div>
|
||||
</footer>
|
||||
{{end}}
|
||||
47
templates/partials/nav.html
Normal file
47
templates/partials/nav.html
Normal file
@@ -0,0 +1,47 @@
|
||||
{{define "nav"}}
|
||||
<a href="#main" class="skip-link">Skip to main content</a>
|
||||
|
||||
<header class="nav">
|
||||
<div class="nav-inner">
|
||||
<a href="/" class="logo">
|
||||
<svg class="logo-icon" width="28" height="28" viewBox="0 0 32 32" fill="none">
|
||||
<rect width="32" height="32" fill="#0b0c0e"/>
|
||||
<path d="M5 27L16 5L27 27" fill="none" stroke="#f59e0b" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M9 20H23" fill="none" stroke="#f59e0b" stroke-width="2.5" stroke-linecap="round"/>
|
||||
</svg>
|
||||
<span>Arcline Project</span>
|
||||
</a>
|
||||
<nav>
|
||||
<a href="/server"{{if eq .Active "server"}} class="nav-active" aria-current="page"{{end}}>Server</a>
|
||||
<a href="/workstation"{{if eq .Active "workstation"}} class="nav-active" aria-current="page"{{end}}>Workstation</a>
|
||||
<a href="/cloud"{{if eq .Active "cloud"}} class="nav-active" aria-current="page"{{end}}>Cloud</a>
|
||||
<a href="/#about">About</a>
|
||||
<a href="/#security">Security</a>
|
||||
<a href="/#contribute">Contribute</a>
|
||||
<button
|
||||
type="button"
|
||||
data-theme-toggle
|
||||
class="theme-toggle"
|
||||
aria-label="Toggle theme"
|
||||
title="Toggle light / dark mode"
|
||||
>
|
||||
<svg class="theme-icon theme-icon-light" width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
||||
<circle cx="12" cy="12" r="5"/>
|
||||
<line x1="12" y1="1" x2="12" y2="3"/>
|
||||
<line x1="12" y1="21" x2="12" y2="23"/>
|
||||
<line x1="4.22" y1="4.22" x2="5.64" y2="5.64"/>
|
||||
<line x1="18.36" y1="18.36" x2="19.78" y2="19.78"/>
|
||||
<line x1="1" y1="12" x2="3" y2="12"/>
|
||||
<line x1="21" y1="12" x2="23" y2="12"/>
|
||||
<line x1="4.22" y1="19.78" x2="5.64" y2="18.36"/>
|
||||
<line x1="18.36" y1="5.64" x2="19.78" y2="4.22"/>
|
||||
</svg>
|
||||
<svg class="theme-icon theme-icon-dark" width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
||||
<path d="M21 12.79A9 9 0 1111.21 3 7 7 0 0021 12.79z"/>
|
||||
</svg>
|
||||
</button>
|
||||
<a href="#get-started" class="nav-cta">Get Started</a>
|
||||
</nav>
|
||||
</div>
|
||||
</header>
|
||||
{{end}}
|
||||
34
templates/partials/waitlist_form.html
Normal file
34
templates/partials/waitlist_form.html
Normal file
@@ -0,0 +1,34 @@
|
||||
{{define "waitlistForm"}}
|
||||
<form
|
||||
hx-post="/partials/waitlist"
|
||||
hx-target="#waitlist-result"
|
||||
hx-swap="outerHTML"
|
||||
class="waitlist-form"
|
||||
>
|
||||
<fieldset class="edition-checkboxes">
|
||||
<legend>I'm interested in:</legend>
|
||||
<label class="edition-checkbox">
|
||||
<input type="checkbox" name="edition" value="server"{{if eq .Edition "server"}} checked{{end}}>
|
||||
<span>Server</span>
|
||||
</label>
|
||||
<label class="edition-checkbox">
|
||||
<input type="checkbox" name="edition" value="workstation"{{if eq .Edition "workstation"}} checked{{end}}>
|
||||
<span>Workstation</span>
|
||||
</label>
|
||||
<label class="edition-checkbox">
|
||||
<input type="checkbox" name="edition" value="cloud"{{if eq .Edition "cloud"}} checked{{end}}>
|
||||
<span>Cloud</span>
|
||||
</label>
|
||||
</fieldset>
|
||||
<input
|
||||
type="email"
|
||||
name="email"
|
||||
placeholder="you@example.com"
|
||||
required
|
||||
class="input"
|
||||
>
|
||||
<button type="submit" class="btn">Get Early Access</button>
|
||||
</form>
|
||||
<div id="waitlist-result"></div>
|
||||
<p class="waitlist-note">No spam. No tracking. We'll only email you when there's something to try.</p>
|
||||
{{end}}
|
||||
197
templates/server.html
Normal file
197
templates/server.html
Normal file
@@ -0,0 +1,197 @@
|
||||
{{define "content"}}
|
||||
{{template "nav" .}}
|
||||
|
||||
<main id="main">
|
||||
|
||||
<!-- Hero -->
|
||||
<section class="hero hero-page">
|
||||
<div class="hero-inner">
|
||||
<h1>Arcline <span class="hero-highlight">Server</span></h1>
|
||||
<p class="tagline">
|
||||
A hardened, production-ready host for SOC and production use — built-in
|
||||
SIEM agent and network IDS on top of the hardened Debian base, with
|
||||
zero telemetry.
|
||||
</p>
|
||||
<div class="hero-actions">
|
||||
<a href="#get-started" class="cta">Get Early Access</a>
|
||||
<a href="/" class="cta-secondary">See all editions</a>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Overview -->
|
||||
<section class="section">
|
||||
<div class="section-inner">
|
||||
<div class="section-label">Overview</div>
|
||||
<h2>A production host that starts<br>defense-ready.</h2>
|
||||
<p class="section-desc">
|
||||
Arcline Server gives SOC teams and production workloads a hardened base and the
|
||||
tooling to watch it — configured the way you'd do it yourself, if you had the weekend.
|
||||
</p>
|
||||
<div class="principles-grid">
|
||||
<div class="principle">
|
||||
<div class="principle-icon">
|
||||
<svg width="22" height="22" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
||||
<rect x="3" y="3" width="18" height="18" rx="3"/>
|
||||
<path d="M8 12l2.5 2.5L16 9"/>
|
||||
</svg>
|
||||
</div>
|
||||
<div>
|
||||
<h3>Hardened by default</h3>
|
||||
<p>Lockdown-mode kernel, seccomp, AppArmor profiles, and a default-deny nftables firewall. You opt in to exposure — never out.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="principle">
|
||||
<div class="principle-icon">
|
||||
<svg width="22" height="22" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
||||
<path d="M2 12h20"/>
|
||||
<path d="M12 2a15.3 15.3 0 014 10 15.3 15.3 0 01-4 10"/>
|
||||
</svg>
|
||||
</div>
|
||||
<div>
|
||||
<h3>SIEM-ready</h3>
|
||||
<p>A pre-configured Wazuh agent ships host and integrity telemetry straight to your SIEM out of the box.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="principle">
|
||||
<div class="principle-icon">
|
||||
<svg width="22" height="22" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
||||
<circle cx="12" cy="12" r="3"/>
|
||||
<path d="M12 2L22 8.5v7L12 22 2 15.5v-7L12 2z"/>
|
||||
</svg>
|
||||
</div>
|
||||
<div>
|
||||
<h3>Network IDS</h3>
|
||||
<p>Suricata (or Zeek) watches for malicious traffic — not just uptime.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="principle">
|
||||
<div class="principle-icon">
|
||||
<svg width="22" height="22" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
||||
<rect x="2" y="2" width="20" height="20" rx="3"/>
|
||||
<rect x="6" y="6" width="12" height="12" rx="1.5" stroke-dasharray="3 2"/>
|
||||
</svg>
|
||||
</div>
|
||||
<div>
|
||||
<h3>Rollback built in</h3>
|
||||
<p>btrfs root with subvolume snapshots, compression, and boot-to-snapshot rollback.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="principle">
|
||||
<div class="principle-icon">
|
||||
<svg width="22" height="22" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
||||
<circle cx="12" cy="12" r="10"/>
|
||||
<path d="M12 6v6l4 2"/>
|
||||
</svg>
|
||||
</div>
|
||||
<div>
|
||||
<h3>Observable</h3>
|
||||
<p>Prometheus node_exporter, Grafana dashboards, and Loki log aggregation — pre-configured.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="principle">
|
||||
<div class="principle-icon">
|
||||
<svg width="22" height="22" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
||||
<circle cx="12" cy="12" r="10"/>
|
||||
<path d="M2 12h20"/>
|
||||
</svg>
|
||||
</div>
|
||||
<div>
|
||||
<h3>Zero telemetry</h3>
|
||||
<p>No analytics, no phone-home, no cloud integration you didn't ask for. Your host talks to you, and no one else.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- What's Included -->
|
||||
<section class="section section-alt">
|
||||
<div class="section-inner">
|
||||
<div class="section-label">What's Included</div>
|
||||
<h2>Everything a defended server needs.</h2>
|
||||
<p class="section-desc">
|
||||
Arcline Server ships the base, the watchdogs, and the dashboards — pre-configured and documented.
|
||||
</p>
|
||||
<div class="security-grid">
|
||||
<div class="stack-card">
|
||||
<div class="stack-header">Base System</div>
|
||||
<ul>
|
||||
<li>Hardened Debian base</li>
|
||||
<li>Lockdown-mode kernel + seccomp</li>
|
||||
<li>btrfs root + snapshot rollback</li>
|
||||
<li>nftables firewall (default-deny)</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="stack-card">
|
||||
<div class="stack-header">Security Stack</div>
|
||||
<ul>
|
||||
<li>Wazuh agent (pre-configured)</li>
|
||||
<li>Suricata / Zeek network IDS</li>
|
||||
<li>OpenSCAP + CIS Benchmark profiles</li>
|
||||
<li>Lynis hardening score</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="stack-card">
|
||||
<div class="stack-header">Observability</div>
|
||||
<ul>
|
||||
<li>Prometheus node_exporter</li>
|
||||
<li>Grafana dashboards</li>
|
||||
<li>Loki log aggregation</li>
|
||||
<li>Pre-built alerting rules</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="stack-card">
|
||||
<div class="stack-header">Containers</div>
|
||||
<ul>
|
||||
<li>Docker + Podman</li>
|
||||
<li>syft + grype SBOM / CVE scanning</li>
|
||||
<li>ClamAV baseline scanning</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="compliance-callout">
|
||||
<div class="compliance-badge">Compliance-ready by default</div>
|
||||
<p>
|
||||
Arcline Server ships CIS Benchmark-aligned by default, with OpenSCAP
|
||||
scanning mapped toward <strong>HIPAA</strong>, <strong>PCI-DSS</strong>, and
|
||||
<strong>SOC 2</strong> control families. The OS itself isn't certified —
|
||||
only audited deployments can be — but the defaults give you a running start.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Other Editions -->
|
||||
<section class="section">
|
||||
<div class="section-inner">
|
||||
<div class="section-label">Other Editions</div>
|
||||
<h2>One hardened base. Three editions.</h2>
|
||||
<p class="section-desc">
|
||||
Every edition shares the same hardened Debian base and zero-telemetry guarantee.
|
||||
</p>
|
||||
<div class="edition-switcher">
|
||||
<a href="/server" class="card-btn card-btn-primary" aria-current="page">Server</a>
|
||||
<a href="/workstation" class="card-btn card-btn-secondary">Workstation</a>
|
||||
<a href="/cloud" class="card-btn card-btn-secondary">Cloud</a>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Get Started -->
|
||||
<section id="get-started" class="section section-alt">
|
||||
<div class="section-inner">
|
||||
<div class="section-label">Get Started</div>
|
||||
<h2>Arcline Server is in active development.<br>Be there at the start.</h2>
|
||||
<p class="section-desc">
|
||||
We're building the ISO pipeline and hardening the defaults.
|
||||
Sign up to receive early access and help shape the first release.
|
||||
</p>
|
||||
{{template "waitlistForm" .}}
|
||||
</div>
|
||||
</section>
|
||||
|
||||
</main>
|
||||
|
||||
{{template "footer" .}}
|
||||
{{end}}
|
||||
201
templates/workstation.html
Normal file
201
templates/workstation.html
Normal file
@@ -0,0 +1,201 @@
|
||||
{{define "content"}}
|
||||
{{template "nav" .}}
|
||||
|
||||
<main id="main">
|
||||
|
||||
<!-- Hero -->
|
||||
<section class="hero hero-page">
|
||||
<div class="hero-inner">
|
||||
<h1>Arcline <span class="hero-highlight">Workstation</span></h1>
|
||||
<p class="tagline">
|
||||
A security analyst / blue-team workstation — KDE Plasma, pre-configured
|
||||
dev toolchains, a privacy-hardened browser, forensics-friendly tooling,
|
||||
and secrets scanning.
|
||||
</p>
|
||||
<div class="hero-actions">
|
||||
<a href="#get-started" class="cta">Get Early Access</a>
|
||||
<a href="/" class="cta-secondary">See all editions</a>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Overview -->
|
||||
<section class="section">
|
||||
<div class="section-inner">
|
||||
<div class="section-label">Overview</div>
|
||||
<h2>Built for the people on<br>the front line.</h2>
|
||||
<p class="section-desc">
|
||||
Arcline Workstation pairs a hardened base with the tools analysts and
|
||||
security-minded developers use every day — without the telemetry that
|
||||
most desktops quietly ship.
|
||||
</p>
|
||||
<div class="principles-grid">
|
||||
<div class="principle">
|
||||
<div class="principle-icon">
|
||||
<svg width="22" height="22" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
||||
<rect x="2" y="3" width="20" height="14" rx="2"/>
|
||||
<path d="M8 21h8"/>
|
||||
<path d="M12 17v4"/>
|
||||
</svg>
|
||||
</div>
|
||||
<div>
|
||||
<h3>KDE Plasma desktop</h3>
|
||||
<p>A lightweight, fully configurable desktop — tuned for long working sessions.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="principle">
|
||||
<div class="principle-icon">
|
||||
<svg width="22" height="22" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
||||
<circle cx="12" cy="12" r="10"/>
|
||||
<path d="M2 12h20"/>
|
||||
</svg>
|
||||
</div>
|
||||
<div>
|
||||
<h3>Privacy-hardened browser</h3>
|
||||
<p>A browser profile locked down out of the box — no tracking, no telemetry, no surprises.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="principle">
|
||||
<div class="principle-icon">
|
||||
<svg width="22" height="22" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
||||
<rect x="3" y="3" width="18" height="18" rx="3"/>
|
||||
<path d="M8 12l2.5 2.5L16 9"/>
|
||||
</svg>
|
||||
</div>
|
||||
<div>
|
||||
<h3>Secrets scanning</h3>
|
||||
<p>gitleaks and trufflehog pre-configured — catch leaked keys before they ship.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="principle">
|
||||
<div class="principle-icon">
|
||||
<svg width="22" height="22" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
||||
<path d="M4 7h16v12H4V7z"/>
|
||||
<path d="M8 3v4"/>
|
||||
<path d="M16 3v4"/>
|
||||
<path d="M4 13h16" stroke-dasharray="2 1"/>
|
||||
</svg>
|
||||
</div>
|
||||
<div>
|
||||
<h3>Dev toolchains ready</h3>
|
||||
<p>Go, Rust, Python, and Node.js toolchains pre-configured. Git, Make, and LLVM/Clang included.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="principle">
|
||||
<div class="principle-icon">
|
||||
<svg width="22" height="22" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
||||
<circle cx="12" cy="12" r="3"/>
|
||||
<path d="M12 2L22 8.5v7L12 22 2 15.5v-7L12 2z"/>
|
||||
</svg>
|
||||
</div>
|
||||
<div>
|
||||
<h3>Forensics-friendly</h3>
|
||||
<p>Tooling and a disk layout that make analysis and evidence handling straightforward.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="principle">
|
||||
<div class="principle-icon">
|
||||
<svg width="22" height="22" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
||||
<rect x="3" y="3" width="18" height="18" rx="3"/>
|
||||
<path d="M8 12l2.5 2.5L16 9"/>
|
||||
</svg>
|
||||
</div>
|
||||
<div>
|
||||
<h3>Hardened base</h3>
|
||||
<p>The same hardened Debian base, btrfs snapshots, and default-deny firewall as every edition.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- What's Included -->
|
||||
<section class="section section-alt">
|
||||
<div class="section-inner">
|
||||
<div class="section-label">What's Included</div>
|
||||
<h2>An analyst's desk, pre-configured.</h2>
|
||||
<p class="section-desc">
|
||||
Everything a blue-team or security-conscious developer needs to be productive on day one.
|
||||
</p>
|
||||
<div class="security-grid">
|
||||
<div class="stack-card">
|
||||
<div class="stack-header">Desktop</div>
|
||||
<ul>
|
||||
<li>KDE Plasma</li>
|
||||
<li>Privacy-hardened browser profile</li>
|
||||
<li>Forensics-friendly tooling</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="stack-card">
|
||||
<div class="stack-header">Development</div>
|
||||
<ul>
|
||||
<li>Go, Rust, Python, Node.js</li>
|
||||
<li>Git, Make, CMake, LLVM/Clang</li>
|
||||
<li>VS Code / Helix / Vim configs</li>
|
||||
<li>Docker / Podman</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="stack-card">
|
||||
<div class="stack-header">Security</div>
|
||||
<ul>
|
||||
<li>gitleaks + trufflehog secrets scanning</li>
|
||||
<li>ClamAV baseline scanning</li>
|
||||
<li>Lynis hardening score</li>
|
||||
<li>OpenSCAP + CIS profiles</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="stack-card">
|
||||
<div class="stack-header">Base System</div>
|
||||
<ul>
|
||||
<li>Hardened Debian base</li>
|
||||
<li>Lockdown-mode kernel + seccomp</li>
|
||||
<li>btrfs root + snapshot rollback</li>
|
||||
<li>Zero telemetry</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="compliance-callout">
|
||||
<div class="compliance-badge">Compliance-ready by default</div>
|
||||
<p>
|
||||
Arcline Workstation ships CIS Benchmark-aligned by default, with OpenSCAP
|
||||
scanning mapped toward <strong>HIPAA</strong>, <strong>PCI-DSS</strong>, and
|
||||
<strong>SOC 2</strong> control families. The OS itself isn't certified —
|
||||
only audited deployments can be — but the defaults give you a running start.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Other Editions -->
|
||||
<section class="section">
|
||||
<div class="section-inner">
|
||||
<div class="section-label">Other Editions</div>
|
||||
<h2>One hardened base. Three editions.</h2>
|
||||
<p class="section-desc">
|
||||
Every edition shares the same hardened Debian base and zero-telemetry guarantee.
|
||||
</p>
|
||||
<div class="edition-switcher">
|
||||
<a href="/server" class="card-btn card-btn-secondary">Server</a>
|
||||
<a href="/workstation" class="card-btn card-btn-primary" aria-current="page">Workstation</a>
|
||||
<a href="/cloud" class="card-btn card-btn-secondary">Cloud</a>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Get Started -->
|
||||
<section id="get-started" class="section section-alt">
|
||||
<div class="section-inner">
|
||||
<div class="section-label">Get Started</div>
|
||||
<h2>Arcline Workstation is in active development.<br>Be there at the start.</h2>
|
||||
<p class="section-desc">
|
||||
We're building the ISO pipeline and hardening the defaults.
|
||||
Sign up to receive early access and help shape the first release.
|
||||
</p>
|
||||
{{template "waitlistForm" .}}
|
||||
</div>
|
||||
</section>
|
||||
|
||||
</main>
|
||||
|
||||
{{template "footer" .}}
|
||||
{{end}}
|
||||
Reference in New Issue
Block a user