/* Git Backup static site — hand-written CSS (reskinnable, no Tailwind) */

/* ---------------------------------- tokens -------------------------------- */
:root {
  --background: 0 0% 100%;
  --foreground: 222.2 84% 4.9%;
  --primary: 221 83% 53%;
  --primary-foreground: 210 40% 98%;
  --secondary: 210 40% 96.1%;
  --secondary-foreground: 222.2 47.4% 11.2%;
  --muted: 210 40% 96.1%;
  --muted-foreground: 215.4 16.3% 46.9%;
  --destructive: 0 84.2% 60.2%;
  --success: 142 76% 36%;
  --border: 214.3 31.8% 91.4%;
  --radius: 1rem;
  --hsl-background: hsl(0 0% 100%);
  --hsl-foreground: hsl(222.2 84% 4.9%);
  --hsl-primary: hsl(221 83% 53%);
  --hsl-primary-foreground: hsl(210 40% 98%);
  --hsl-secondary: hsl(210 40% 96.1%);
  --hsl-muted: hsl(210 40% 96.1%);
  --hsl-muted-fg: hsl(215.4 16.3% 46.9%);
  --hsl-border: hsl(214.3 31.8% 91.4%);
  --hsl-gray-900: hsl(222.2 47.4% 11.2%);
  --hsl-gray-950: hsl(222.2 84% 4.9%);
}

/* ---------------------------------- base ---------------------------------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  overflow-x: clip;
}
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
code, pre { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }
svg { width: 1em; height: 1em; vertical-align: -0.15em; }
::selection { background: hsl(var(--primary) / 0.2); }

/* --------------------------------- layout --------------------------------- */
.container { max-width: 80rem; margin-inline: auto; padding-inline: 1rem; }
.container-sm { max-width: 56rem; margin-inline: auto; padding-inline: 1rem; }
@media (min-width: 640px) { .container, .container-sm { padding-inline: 1.5rem; } }
@media (min-width: 1024px) { .container, .container-sm { padding-inline: 2rem; } }
.flex-1 { flex: 1; }
.center { text-align: center; }
.center-block { margin-inline: auto; }
.mt-md { margin-top: 1.5rem; }
.mt-sm { margin-top: 0.5rem; }
.mt-lg { margin-top: 2.5rem; }
.mb-tight { margin-bottom: 1.5rem; }
.max-lg { max-width: 42rem; }
.max-md { max-width: 40rem; }
.page { min-height: 100vh; display: flex; flex-direction: column; }

/* --------------------------------- header --------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, hsl(var(--background)) 80%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid hsl(var(--border));
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 5rem; }
.logo-badge {
  width: 2.5rem; height: 2.5rem; display: inline-flex; align-items: center; justify-content: center;
  background: hsl(var(--primary)); border-radius: 0.75rem; color: #fff; font-size: 1.4rem;
  box-shadow: 0 4px 12px hsl(var(--primary) / 0.2); transition: transform 0.3s;
}
.logo-badge svg { color: #fff; }
a:hover .logo-badge { transform: scale(1.05); }
.logo-word { font-size: 1.25rem; font-weight: 800; letter-spacing: -0.02em; color: hsl(var(--hsl-gray-900)); }
.logo-word-lg { font-size: 1.5rem; font-weight: 800; color: #fff; letter-spacing: -0.02em; }
.desktop-nav { display: none; align-items: center; gap: 0.5rem; }
.desktop-nav a { padding: 0.5rem 1rem; border-radius: 0.75rem; font-size: 0.875rem; font-weight: 700; color: hsl(215.4 16.3% 46.9%); transition: 0.2s; }
.desktop-nav a:hover { color: hsl(var(--primary)); background: hsl(210 40% 96.1%); }
.desktop-nav a.icon-link { padding: 0.5rem; color: hsl(215.4 16.3% 46.9%); }
.desktop-nav a.icon-link svg { width: 1.25rem; height: 1.25rem; }
.nav-divider { width: 1px; height: 1.5rem; background: hsl(var(--border)); margin-inline: 0.5rem; }
.mobile-toggle { display: inline-flex; padding: 0.5rem; border-radius: 0.75rem; color: hsl(var(--hsl-gray-900)); background: none; border: none; cursor: pointer; font-size: 1.4rem; }
.mobile-toggle:hover { background: hsl(210 40% 96.1%); }
.mobile-nav { display: flex; flex-direction: column; gap: 0.5rem; border-top: 1px solid hsl(var(--border)); background: #fff; box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1); padding: 1.5rem 1rem; }
.mobile-nav a { display: block; padding: 0.75rem 1rem; border-radius: 0.75rem; font-weight: 700; color: hsl(var(--hsl-gray-900)); }
.mobile-nav a:hover { background: hsl(210 40% 96.1%); }
.mobile-nav .mobile-dash { background: var(--hsl-gray-900); color: #fff; margin-top: 1rem; }
@media (min-width: 1024px) { .desktop-nav { display: flex; } .mobile-toggle, .mobile-nav { display: none; } }

/* --------------------------------- buttons -------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.75rem 1.5rem; border-radius: 0.75rem; font-weight: 600; font-size: 0.95rem;
  border: 1px solid transparent; cursor: pointer; transition: all 0.2s; line-height: 1.2;
}
.btn:active { transform: scale(0.98); }
.btn-primary { background: hsl(var(--primary)); color: hsl(var(--hsl-primary-foreground)); }
.btn-primary:hover { background: hsl(var(--primary) / 0.9); box-shadow: 0 10px 20px -5px hsl(var(--primary) / 0.3); }
.btn-outline { background: hsl(var(--hsl-secondary)); color: hsl(var(--hsl-secondary-foreground)); border-color: hsl(var(--border)); }
.btn-outline:hover { background: hsl(var(--hsl-muted-fg) / 0.08); }
.btn-outline:disabled { opacity: 0.5; cursor: not-allowed; }
.btn-dark { background: var(--hsl-gray-900); color: #fff; font-weight: 700; }
.btn-dark:hover { background: hsl(var(--hsl-gray-900) / 0.85); }
.btn-dark svg { width: 1rem; height: 1rem; }
.btn-ghost-light { background: rgb(255 255 255 / 0.1); color: #fff; border-color: transparent; }
.btn-ghost-light:hover { background: rgb(255 255 255 / 0.2); }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.85rem; }
.btn[disabled] { opacity: 0.6; cursor: not-allowed; }
.w-full { width: 100%; }
.center { text-align: center; }
.h-lg { height: 3rem; }
.strong-link { color: hsl(var(--primary)); font-weight: 600; }
.strong-link:hover { text-decoration: underline; }
.strong-link.small { font-size: 0.85rem; }
.ghost-link { color: hsl(215.4 16.3% 46.9%); font-weight: 600; font-size: 0.9rem; }
.ghost-link:hover { color: hsl(var(--primary)); }
.dark-link { display: inline-flex; align-items: center; gap: 0.5rem; color: hsl(var(--primary)); font-weight: 700; margin-top: 2rem; }
.dark-link:hover { color: #fff; }
.ghost-link svg { width: 1rem; height: 1rem; }

/* ----------------------------------- hero ---------------------------------- */
.hero { position: relative; padding: 5rem 0 8rem; background: hsl(222.2 84% 4.9%); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at top right, hsl(var(--primary) / 0.25), transparent 55%);
}
.hero-compact { padding: 5rem 0 6rem; }
.hero > .container { position: relative; z-index: 1; }
.hero-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.hero-pill {
  display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; border-radius: 9999px;
  background: rgb(255 255 255 / 0.1); border: 1px solid rgb(255 255 255 / 0.1);
  color: #fff; font-size: 0.85rem; font-weight: 700; margin-bottom: 2rem; backdrop-filter: blur(4px);
}
.pulse-dot { width: 0.5rem; height: 0.5rem; border-radius: 9999px; background: hsl(var(--success)); animation: pulse 2s infinite; }
.pulse-dot.amber { background: #fbbf24; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero h1 { font-size: clamp(2.75rem, 7vw, 4.5rem); font-weight: 800; color: #fff; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 1.5rem; }
.hero h1 .accent { color: hsl(217.2 91.2% 59.8%); }
.h1-xl { font-size: clamp(2.5rem, 6vw, 3.75rem); }
.hero h1.light { color: #fff; }
.hero-lead { font-size: 1.25rem; color: hsl(215 20.2% 65.1%); max-width: 32rem; margin-bottom: 2.5rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-panel-wrap { animation: fadeInUp 0.5s ease-out; }
.hero-panel { background: #fff; border-radius: 2rem; box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.35); padding: 0.5rem; }
.hero-panel-body { padding: 2rem; }
.hero-panel-body h3 { font-size: 1.4rem; font-weight: 700; color: hsl(var(--hsl-gray-900)); margin-bottom: 1.5rem; letter-spacing: -0.02em; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ------------------------------- backup tool ------------------------------ */
.backup-tool { display: flex; flex-direction: column; gap: 1rem; }
.backup-tool-fields { display: flex; flex-direction: column; gap: 0.75rem; }
.input-clear-wrap { position: relative; }
.input {
  width: 100%; height: 2.25rem; padding: 0 0.75rem; border-radius: 0.5rem;
  border: 1px solid hsl(214.3 31.8% 91.4%); background: transparent; font-size: 0.95rem; color: hsl(var(--hsl-gray-900));
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.05); outline: none; transition: box-shadow 0.15s;
}
.input:focus-visible { box-shadow: 0 0 0 1px hsl(var(--primary)); }
.input.mono { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.85rem; padding-right: 2.5rem; }
select.input { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.75rem center; }
.clear-btn { position: absolute; right: 0.75rem; top: 50%; transform: translateY(-50%); color: hsl(215.4 16.3% 46.9%); background: none; border: none; cursor: pointer; font-size: 1rem; }
.clear-btn:hover { color: hsl(215 20.2% 65.1%); }
.backup-tool-actions { display: flex; gap: 0.75rem; }
.backup-tool-actions .flex-1 { flex: 1; }
.scheduled-card {
  display: flex; gap: 0.75rem; align-items: flex-start; padding: 1rem;
  border: 1px solid hsl(var(--primary) / 0.2); background: hsl(var(--primary) / 0.05); border-radius: 0.75rem; margin-top: 0.5rem;
}
.scheduled-check { color: hsl(var(--primary)); flex-shrink: 0; font-size: 1.25rem; }
.scheduled-title { font-weight: 700; color: hsl(var(--hsl-gray-900)); margin-bottom: 0.25rem; }
.scheduled-url { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.75rem; word-break: break-all; color: hsl(var(--hsl-gray-900)); }
.scheduled-note { margin-top: 0.25rem; color: hsl(215.4 16.3% 46.9%); font-size: 0.85rem; }
.backup-fine { font-size: 0.8rem; color: hsl(215.4 16.3% 46.9%); line-height: 1.6; }
.form-error { color: hsl(var(--destructive)); font-size: 0.875rem; font-weight: 600; }

/* ---------------------- sim dashboard (paywall preview) ------------------- */
.sim-dashboard {
  margin-top: 0.25rem; padding: 1rem; border-radius: 0.75rem;
  border: 1px solid hsl(var(--border)); background: hsl(210 40% 98.1%);
  display: flex; flex-direction: column; gap: 1rem;
}
.sim-head { display: flex; gap: 0.75rem; align-items: flex-start; }
.sim-icon { display: inline-flex; color: hsl(var(--primary)); font-size: 1.25rem; flex-shrink: 0; margin-top: 0.15rem; }
.sim-title { font-weight: 700; color: hsl(var(--hsl-gray-900)); }
.sim-sub { font-size: 0.8rem; color: hsl(215.4 16.3% 46.9%); margin-top: 0.15rem; }
.sim-meta { display: flex; flex-direction: column; gap: 0.4rem; }
.sim-url { font-size: 0.75rem; word-break: break-all; color: hsl(var(--hsl-gray-900)); }
.sim-meta-row { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: hsl(215.4 16.3% 46.9%); }
.sim-meta-row svg { flex-shrink: 0; }
.job-row {
  display: flex; align-items: center; gap: 1rem; padding: 0.75rem 1rem;
  border: 1px solid hsl(var(--border)); border-radius: 0.6rem; background: #fff;
}
.job-row.disabled { opacity: 0.65; border-style: dashed; }
.job-info { flex: 1; min-width: 0; }
.job-name { font-size: 0.85rem; font-weight: 600; color: hsl(var(--hsl-gray-900)); word-break: break-all; }
.job-sched { font-size: 0.75rem; color: hsl(215.4 16.3% 46.9%); margin-top: 0.15rem; }
.job-status {
  flex-shrink: 0; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
  color: hsl(var(--hsl-gray-900)); background: hsl(210 40% 96.1%);
  padding: 0.25rem 0.6rem; border-radius: 9999px;
}
.sim-fine { font-size: 0.75rem; color: hsl(215.4 16.3% 46.9%); line-height: 1.5; }

/* --------------------------------- offer bar ------------------------------ */
.offer-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  background: hsl(222.2 84% 4.9%); color: #fff;
  padding: 0.65rem 0; box-shadow: 0 -10px 30px rgb(0 0 0 / 0.25);
}
.offer-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.offer-text { font-size: 0.9rem; color: #fff; }
.offer-countdown { font-weight: 700; color: #fbbf24; letter-spacing: 0.02em; }
.page-offer { padding-bottom: 3.25rem; }

/* Payment-received banner (?checkout=success return from Stripe) */
.checkout-success {
  background: hsl(160.4 84.1% 22.7%); color: #fff;
  padding: 0.65rem 0; box-shadow: 0 10px 30px rgb(0 0 0 / 0.15);
}
.offer-dismiss {
  background: none; border: 0; color: #fff; cursor: pointer;
  display: flex; align-items: center; padding: 0.25rem; flex-shrink: 0;
}
.offer-dismiss:hover { opacity: 0.8; }

/* --------------------------------- pricing -------------------------------- */
.pricing-section { padding: 6rem 0; background: hsl(210 40% 96.1%); scroll-margin-top: 5rem; }
.pricing-head { max-width: 48rem; text-align: center; margin: 0 auto 4rem; }
.pricing-head h2 { font-size: 2.25rem; font-weight: 800; color: hsl(var(--hsl-gray-900)); letter-spacing: -0.02em; margin-bottom: 1.5rem; }
.pricing-head p { font-size: 1.2rem; color: hsl(215.4 16.3% 46.9%); }
.pricing-grid { display: grid; gap: 1.5rem; align-items: start; }
@media (min-width: 768px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }
.price-tower { position: relative; display: flex; flex-direction: column; border: 1px solid hsl(var(--border)); border-radius: 1.5rem; padding: 2rem; background: #fff; box-shadow: 0 1px 3px rgb(0 0 0 / 0.05); }
.price-tower-hl { border-color: hsl(var(--primary)); background: hsl(var(--primary) / 0.05); box-shadow: 0 25px 50px -12px hsl(var(--primary) / 0.15); }
@media (min-width: 1024px) { .price-tower-hl { transform: translateY(-1rem); } }
.price-badge {
  position: absolute; top: -0.75rem; left: 50%; transform: translateX(-50%);
  background: hsl(var(--primary)); color: hsl(var(--hsl-primary-foreground));
  padding: 0.25rem 1rem; border-radius: 9999px; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
}
.price-head h3 { font-size: 1.5rem; font-weight: 800; color: hsl(var(--hsl-gray-900)); }
.price-tagline { margin-top: 0.25rem; font-size: 0.875rem; color: hsl(215.4 16.3% 46.9%); }
.price-line { margin: 2rem 0; }
.price-amount { font-size: 3rem; font-weight: 800; letter-spacing: -0.02em; color: hsl(var(--hsl-gray-900)); }
.price-unit { margin-left: 0.5rem; font-size: 0.9rem; font-weight: 500; color: hsl(215.4 16.3% 46.9%); }
.price-features { display: flex; flex-direction: column; gap: 0.75rem; flex: 1; margin-bottom: 2rem; }
.price-features li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.875rem; color: hsl(215.4 16.3% 46.9%); }
.price-features svg { color: hsl(var(--primary)); flex-shrink: 0; margin-top: 0.2rem; }
.plans-grid { display: grid; gap: 1.5rem; max-width: 56rem; margin-inline: auto; }
@media (min-width: 768px) { .plans-grid { grid-template-columns: 1fr 1fr; } }

/* ---------------------------------- bento --------------------------------- */
.bento-section { padding: 6rem 0; background: #fff; }
.bento-head { max-width: 48rem; margin-bottom: 4rem; }
.bento-head h2 { font-size: 2.25rem; font-weight: 800; color: hsl(var(--hsl-gray-900)); letter-spacing: -0.02em; margin-bottom: 1.5rem; }
.bento-head p { font-size: 1.2rem; color: hsl(215.4 16.3% 46.9%); }
.bento-grid { display: grid; gap: 1.5rem; }
.bento { border-radius: 1.5rem; padding: 2.5rem; }
.bento p { color: hsl(215.4 16.3% 46.9%); font-size: 1.05rem; line-height: 1.7; }
.bento h3 { font-size: 1.5rem; font-weight: 700; color: hsl(var(--hsl-gray-900)); margin-bottom: 1rem; }
.bento-icon { display: inline-flex; color: hsl(var(--primary)); font-size: 2.5rem; margin-bottom: 1.5rem; }
.bento-icon.amber { color: #fbbf24; }
.bento code { background: hsl(210 40% 96.1%); border-radius: 0.25rem; padding: 0.1rem 0.4rem; font-size: 0.85em; color: hsl(var(--hsl-gray-900)); }
.bento .strong-link { text-decoration: underline; }
.bento { border: 1px solid hsl(var(--border)); background: hsl(210 40% 96.1%); }
.bento-tint { background: hsl(var(--primary) / 0.05); border-color: hsl(var(--primary) / 0.1); }
.bento-tint p { color: hsl(var(--hsl-gray-900) / 0.8); }
.bento-soft { background: #fff; }
@media (min-width: 768px) { .bento-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .bento-grid { grid-template-columns: repeat(3, 1fr); } .bento-wide { grid-column: span 2; } }
.bento-dark { background: hsl(222.2 84% 4.9%); color: #fff; border-color: hsl(217.2 32.6% 17.5%); display: flex; flex-direction: column; justify-content: space-between; align-items: flex-start; }
.bento-dark h3 { color: #fff; }
.bento-dark p { color: hsl(215 20.2% 65.1%); max-width: 42rem; }

/* ---------------------------------- trust --------------------------------- */
.trust-section { padding: 5rem 0; background: hsl(210 40% 96.1%); border-top: 1px solid hsl(var(--border)); }
.trust-grid { display: grid; gap: 2.5rem; text-align: center; }
@media (min-width: 768px) { .trust-grid { grid-template-columns: repeat(3, 1fr); } }
.trust-num { font-size: 3rem; font-weight: 800; color: hsl(var(--primary)); }
.trust-label { margin-top: 0.5rem; color: hsl(215.4 16.3% 46.9%); font-weight: 500; }

/* ------------------------------- page shells ------------------------------ */
.page-hero { padding: 4rem 0 5rem; background: linear-gradient(to bottom right, hsl(214 100% 97%), hsl(var(--background)) 40%, hsl(234 89% 97%)); }
.page-hero-plain { padding: 4rem 0 5rem; background: hsl(210 40% 96.1%); }
.page-narrow { max-width: 56rem; margin-inline: auto; }
.badge-row { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem; }
.badge-icon { width: 3rem; height: 3rem; display: inline-flex; align-items: center; justify-content: center; background: hsl(var(--primary) / 0.1); border-radius: 1rem; color: hsl(var(--primary)); font-size: 1.4rem; }
.badge-text { font-size: 0.8rem; font-weight: 700; color: hsl(var(--primary)); text-transform: uppercase; letter-spacing: 0.06em; }
.h1 { font-size: clamp(2.25rem, 5vw, 3rem); font-weight: 800; color: hsl(var(--hsl-gray-900)); letter-spacing: -0.02em; margin-bottom: 1.5rem; line-height: 1.15; }
.h2 { font-size: 1.9rem; font-weight: 800; color: hsl(var(--hsl-gray-900)); letter-spacing: -0.02em; }
.h3 { font-size: 1.35rem; font-weight: 700; color: hsl(var(--hsl-gray-900)); }
.h4 { font-size: 1.1rem; font-weight: 700; color: hsl(var(--hsl-gray-900)); }
.lead { font-size: 1.1rem; color: hsl(215.4 16.3% 46.9%); line-height: 1.7; }
.lead.mt, .lead + .lead { margin-top: 1rem; }
.center-hero { text-align: center; max-width: 42rem; margin: 0 auto 3rem; }
.center-hero.head-only { margin-bottom: 3rem; }
.center-hero.head-left { text-align: left; margin: 0 0 1.5rem; }
.center-hero .h1 { margin-bottom: 1rem; }
.legal-head { margin-bottom: 3rem; }
.legal-head .fine { color: hsl(215.4 16.3% 46.9%); font-size: 0.85rem; }
.fine { font-size: 0.8rem; color: hsl(215.4 16.3% 46.9%); }
.mono { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }

/* ---------------------------------- cards --------------------------------- */
.card { border: 1px solid hsl(var(--border)); border-radius: 1.5rem; padding: 2rem; background: hsl(210 40% 96.1%); }
.article-card { border: 1px solid hsl(var(--border)); border-radius: 1.5rem; padding: 2rem; background: #fff; box-shadow: 0 1px 3px rgb(0 0 0 / 0.04); }
@media (min-width: 768px) { .article-card { padding: 2.5rem; } }
.card h3 { font-size: 1.25rem; font-weight: 700; color: hsl(var(--hsl-gray-900)); margin-bottom: 0.5rem; }
.card p { color: hsl(215.4 16.3% 46.9%); line-height: 1.7; }
.pad-lg { padding: 2.5rem; }
@media (min-width: 768px) { .pad-lg { padding: 2.5rem; } }
.card.pad-lg h2 { margin-bottom: 0.25rem; }
.features-grid { display: grid; gap: 1.5rem; margin-bottom: 2.5rem; }
@media (min-width: 768px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }
.card-icon { display: inline-flex; color: hsl(var(--primary)); font-size: 2rem; margin-bottom: 1rem; }
.card-icon svg { width: 2.2rem; height: 2.2rem; }

/* ---------------------------------- prose --------------------------------- */
.prose { max-width: 48rem; color: hsl(215.4 16.3% 46.9%); display: flex; flex-direction: column; gap: 1.5rem; }
.prose h2 { font-size: 1.5rem; font-weight: 700; color: hsl(var(--hsl-gray-900)); }
.prose h2.no-top, .no-top { margin-top: 0 !important; }
.prose code { background: hsl(210 40% 96.1%); padding: 0.1rem 0.4rem; border-radius: 0.25rem; font-size: 0.875em; color: hsl(var(--hsl-gray-900)); }

/* ---------------------------------- tools --------------------------------- */
.tools-stack { display: flex; flex-direction: column; gap: 3rem; }
.badge-row .h2-icon { display: inline-flex; color: hsl(var(--primary)); font-size: 1.5rem; }
.h2-icon { display: inline-flex; color: hsl(var(--primary)); font-size: 1.6rem; }
.tools-stack pre { background: hsl(222.2 84% 4.9%); color: hsl(210 40% 98%); padding: 1.25rem; border-radius: 1rem; overflow-x: auto; font-size: 0.85rem; line-height: 1.7; margin: 1.25rem 0; }
.tools-stack code { font-size: 0.875rem; }
.note-card { background: hsl(var(--primary) / 0.05); border: 1px solid hsl(var(--primary) / 0.1); border-radius: 1.5rem; padding: 2rem; text-align: center; }
.note-card h3 { font-size: 1.2rem; font-weight: 700; color: hsl(var(--hsl-gray-900)); margin-bottom: 0.5rem; }
.note-card p { color: hsl(215.4 16.3% 46.9%); max-width: 42rem; margin-inline: auto; }

/* --------------------------------- contact -------------------------------- */
.contact-grid { display: grid; gap: 2rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 2fr; } }
.contact-side { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-lines { display: flex; flex-direction: column; gap: 0.75rem; color: hsl(215.4 16.3% 46.9%); font-size: 0.875rem; }
.contact-lines p { display: flex; align-items: center; gap: 0.75rem; }
.contact-lines svg { color: hsl(var(--primary)); flex-shrink: 0; }
.contact-lines a:hover { color: hsl(var(--primary)); }
.notice-card { border-radius: 1rem; padding: 1.5rem; display: flex; gap: 0.75rem; align-items: flex-start; }
.notice-card.amber { background: hsl(38 92% 50% / 0.1); border: 1px solid hsl(38 92% 50% / 0.25); }
.notice-card.amber .notice-icon { color: hsl(38 92% 50%); flex-shrink: 0; }
.notice-card.amber h2 { color: hsl(38 92% 30%); font-size: 0.9rem; margin-bottom: 0.25rem; }
.notice-card.amber p { color: hsl(38 92% 28%); font-size: 0.875rem; line-height: 1.6; }
.notice-card.amber a { color: hsl(38 92% 30%); font-weight: 500; text-decoration: underline; }
.contact-form-wrap .card { background: #fff; box-shadow: 0 10px 30px -10px rgb(0 0 0 / 0.1); }
form { display: flex; flex-direction: column; gap: 1.25rem; }
.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field label { font-weight: 600; font-size: 0.875rem; color: hsl(var(--hsl-gray-900)); }
.field input, .field textarea, .field select {
  width: 100%; padding: 0.6rem 0.75rem; border-radius: 0.5rem; border: 1px solid hsl(var(--border));
  background: transparent; color: hsl(var(--hsl-gray-900)); font-size: 0.95rem; font-family: inherit; outline: none;
}
.field input:focus-visible, .field textarea:focus-visible { box-shadow: 0 0 0 1px hsl(var(--primary)); }
.field textarea { resize: vertical; min-height: 8rem; }
.confirm-card { border: 1px solid hsl(var(--primary) / 0.2); background: hsl(var(--primary) / 0.05); border-radius: 1rem; padding: 2rem; text-align: center; }
.confirm-card p { color: hsl(215.4 16.3% 46.9%); }
.confirm-card .scheduled-title { margin-bottom: 0.25rem; }

/* --------------------------------- forgejo -------------------------------- */
.three-strip { margin-top: 2.5rem; display: grid; gap: 1rem; }
@media (min-width: 640px) { .three-strip { grid-template-columns: repeat(3, 1fr); } }
.strip-item { border: 1px solid hsl(var(--border)); background: #fff; border-radius: 1rem; padding: 1.25rem; font-size: 0.875rem; font-weight: 600; color: hsl(215.4 16.3% 46.9%); text-align: center; }
.confirm-card svg { color: hsl(var(--primary)); }

/* ---------------------------------- legal --------------------------------- */
.legal-card { background: #fff; border: 1px solid hsl(var(--border)); border-radius: 1rem; padding: 2rem; box-shadow: 0 1px 3px rgb(0 0 0 / 0.05); display: flex; flex-direction: column; gap: 2rem; }
@media (min-width: 640px) { .legal-card { padding: 2rem; } }
.legal-card h2 { margin-bottom: 1rem; }
.legal-card p { color: hsl(215.4 16.3% 46.9%); line-height: 1.7; margin-bottom: 1rem; }
.legal-card strong { color: hsl(var(--hsl-gray-900)); }
.legal-card ul { list-style: disc; padding-left: 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; color: hsl(215.4 16.3% 46.9%); }
.legal-card a { color: hsl(var(--primary)); }
.legal-card a:hover { text-decoration: underline; }

/* --------------------------------- dark cta ------------------------------- */
.cta-dark { background: hsl(222.2 84% 4.9%); color: #fff; border-radius: 1.5rem; padding: 2.5rem; text-align: center; }
.cta-dark h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.75rem; }
.cta-dark p { color: hsl(215 20.2% 65.1%); margin-bottom: 1.5rem; max-width: 36rem; margin-inline: auto; }
.cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }

/* --------------------------------- footer --------------------------------- */
.site-footer { background: hsl(222.2 84% 4.9%); color: hsl(215 20.2% 65.1%); }
.site-footer .container { padding-block: 5rem; }
.footer-grid { display: grid; gap: 3rem; margin-bottom: 4rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } .footer-brand { grid-column: span 2; } }
.footer-logo { display: inline-flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem; }
.footer-logo .logo-badge { background: hsl(var(--primary)); }
.footer-brand p { max-width: 24rem; line-height: 1.7; }
.footer-heading { font-size: 0.8rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 0.06em; display: block; margin-bottom: 1.5rem; }
.footer-links { display: flex; flex-direction: column; gap: 1rem; }
.footer-links a:hover { color: #fff; }
.footer-legal { padding-top: 2rem; border-top: 1px solid hsl(217.2 32.6% 17.5%); display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 1.5rem; font-size: 0.875rem; }
@media (min-width: 768px) { .footer-legal { flex-direction: row; } }
.legal-links { display: flex; gap: 1.5rem; }
.legal-links a:hover { color: #fff; }

/* --------------------------------- misc ----------------------------------- */
.row-icon { display: inline-flex; align-items: center; gap: 0.5rem; }
.row-icon svg { color: hsl(var(--primary)); width: 1.1rem; height: 1.1rem; }
.breadcrumb-list { display: flex; align-items: center; flex-wrap: wrap; gap: 0.25rem; font-size: 0.875rem; color: hsl(215.4 16.3% 46.9%); margin-bottom: 1.5rem; }
.breadcrumb-item { display: inline-flex; align-items: center; }
.breadcrumb-chevron { color: hsl(215.4 16.3% 46.9%); margin-inline: 0.25rem; display: inline-flex; }
.breadcrumb-current { color: hsl(var(--hsl-gray-900)); font-weight: 500; }
.breadcrumb-home { display: inline-flex; }
.breadcrumb-home svg { width: 1rem; height: 1rem; }
.breadcrumb-home:hover { color: hsl(var(--primary)); }
.ghost-link { display: inline-flex; align-items: center; gap: 0.5rem; }
