AkurAI Build
Menu

akurai-tasks

public

Latest change c5be5e616090ae3f9ae037e3702c07f72dc783f3 - chore: establish AkurAI Tasks planning baseline by Ólafur Búi Ólafsson

/* AkurAI-Tasks — Framework-native, hand-written, no build step. */
:root {
  --bg: #0a0c11;
  --bg-2: #0f131b;
  --panel: #141925;
  --panel-2: #1a2030;
  --border: #232b3b;
  --border-2: #2c3650;
  --fg: #e7ebf3;
  --muted: #8a93a8;
  --dim: #5c647a;
  --accent: #5b8cff;
  --accent-2: #8a6bff;
  --ok: #3ddc84;
  --radius: 14px;
  --shadow: 0 24px 60px -28px #000;
}

* { box-sizing: border-box; }
html, body { margin: 0; }
html { scroll-behavior: smooth; }
body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--fg);
  font: 16px/1.65 ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}
a { color: var(--accent); }
a:hover { text-decoration: none; }
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

/* Navigation */
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 64px;
  padding: 14px 28px;
  border-bottom: 1px solid var(--border);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(12px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--fg);
  font-weight: 750;
  letter-spacing: -0.02em;
  text-decoration: none;
}
.brand .mark { color: var(--accent); }
.brand-dim { color: var(--dim); font-weight: 650; }
.nav-links { display: flex; align-items: center; gap: 20px; }
.nav-links a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 550;
  text-decoration: none;
}
.nav-links a:hover { color: var(--fg); }

/* Full-width Forkbird hero */
.hero {
  position: relative;
  isolation: isolate;
  min-height: 690px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}
.hero-media,
.hero-scrim {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-scrim {
  background:
    linear-gradient(90deg, rgba(10, 12, 17, .98) 0%, rgba(10, 12, 17, .91) 27%, rgba(10, 12, 17, .32) 57%, rgba(10, 12, 17, .06) 100%),
    linear-gradient(0deg, rgba(10, 12, 17, .76) 0%, transparent 32%);
}
.hero-panel {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 690px;
  width: min(100%, 1160px);
  margin: 0 auto;
  padding: 96px 28px;
}
.hero-copy { width: min(650px, 58vw); }
.eyebrow,
.kicker {
  margin: 0;
  color: var(--accent);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.eyebrow {
  display: inline-flex;
  padding: 6px 12px;
  border: 1px solid var(--border-2);
  border-radius: 999px;
  background: rgba(20, 25, 37, .88);
}
.hero h1 {
  max-width: 12ch;
  margin: 22px 0 18px;
  font-size: clamp(46px, 6.2vw, 76px);
  line-height: .98;
  letter-spacing: -.045em;
}
.lede {
  max-width: 58ch;
  margin: 0 0 30px;
  color: #aeb6c8;
  font-size: clamp(17px, 2vw, 20px);
}
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  transition: transform .04s ease, filter .15s ease, background .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: linear-gradient(180deg, var(--accent), #4577ec);
  box-shadow: 0 10px 26px -12px var(--accent);
  color: #fff;
}
.btn-primary:hover { filter: brightness(1.08); }
.btn-secondary {
  border-color: var(--border-2);
  background: rgba(26, 32, 48, .84);
  color: var(--fg);
}
.btn-secondary:hover { background: var(--panel-2); }
.status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 24px;
  padding: 7px 13px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(20, 25, 37, .78);
  color: var(--muted);
  font-size: 13px;
}
.status::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 4px color-mix(in srgb, currentColor 20%, transparent);
  content: "";
}
.status.ok { color: var(--ok); border-color: #1d3a2a; }

/* Planning baseline */
.page-shell {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 0 28px 96px;
}
.section-heading { max-width: 740px; }
.section-heading h2,
.inventory h2,
.handoff h2 {
  margin: 10px 0 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
  letter-spacing: -.035em;
}
.principles { padding: 96px 0 48px; }
.principle-list {
  margin-top: 48px;
  border-top: 1px solid var(--border);
}
.principle {
  display: grid;
  grid-template-columns: 64px minmax(180px, .7fr) minmax(280px, 1.3fr);
  gap: 24px;
  align-items: baseline;
  padding: 25px 0;
  border-bottom: 1px solid var(--border);
}
.principle-number {
  color: var(--dim);
  font: 12px/1.4 ui-monospace, "SF Mono", Menlo, monospace;
}
.principle h3 { margin: 0; font-size: 18px; }
.principle p { margin: 0; color: var(--muted); }

.inventory {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
  gap: 72px;
  align-items: start;
  padding: 80px 0;
}
.section-copy { max-width: 58ch; margin: 22px 0 0; color: var(--muted); }
.inventory-list { margin: 0; border-top: 1px solid var(--border); }
.inventory-list div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.inventory-list dt { color: var(--muted); }
.inventory-list dd {
  margin: 0;
  color: var(--fg);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.02em;
}
.handoff {
  max-width: 820px;
  padding: 44px 0 10px;
  border-top: 1px solid var(--border-2);
}
.handoff p:not(.kicker) { max-width: 66ch; margin: 20px 0; color: var(--muted); }
.text-link { font-weight: 650; text-decoration: none; }
.text-link span { display: inline-block; transition: transform .15s ease; }
.text-link:hover span { transform: translateX(4px); }

/* Footer */
.site-footer {
  padding: 32px 24px 40px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  text-align: center;
  font-size: 13px;
}
.site-footer p { margin: 3px 0; }
.site-footer strong { color: var(--fg); }
.muted { color: var(--dim); }

@media (max-width: 900px) {
  .hero-copy { width: min(620px, 66vw); }
  .inventory { gap: 42px; }
}

@media (max-width: 700px) {
  .nav { min-height: 58px; padding: 12px 18px; }
  .nav-links { gap: 14px; }
  .nav-links a:first-child { display: none; }
  .hero { min-height: 0; overflow: visible; }
  .hero-media {
    position: relative;
    aspect-ratio: 16 / 10;
    border-bottom: 1px solid var(--border);
  }
  .hero-media img { object-position: 66% center; }
  .hero-scrim {
    background: linear-gradient(0deg, var(--bg) 0%, transparent 42%);
  }
  .hero-panel {
    min-height: 0;
    margin-top: -42px;
    padding: 0 20px 56px;
  }
  .hero-copy { width: 100%; }
  .hero h1 { max-width: 14ch; font-size: clamp(40px, 12vw, 58px); }
  .principle {
    grid-template-columns: 44px 1fr;
    gap: 8px 16px;
  }
  .principle p { grid-column: 2; }
  .inventory { grid-template-columns: 1fr; padding: 64px 0; }
  .page-shell { padding: 0 20px 72px; }
  .principles { padding-top: 72px; }
}

@media (max-width: 480px) {
  .brand { font-size: 15px; }
  .nav-links a { font-size: 13px; }
  .nav-links a:nth-child(3) { display: none; }
  .hero-media { aspect-ratio: 4 / 3; }
  .hero-media img { object-position: 68% center; }
  .btn-row { display: grid; }
  .btn { width: 100%; }
  .inventory-list div { align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}